December 2017
Intermediate to advanced
364 pages
7h 30m
English
Docker is an open platform for developers and system administrators to build, ship, and run distributed applications whether on laptops, data center VMs, or the cloud. To learn more about Docker, refer to https://www.docker.com/what-docker.
The following playbook will install Docker Community Edition software in Ubuntu 16.04:
- name: installing docker on ubuntu hosts: zap remote_user: "{{ remote_user_name }}" gather_facts: no become: yes vars: remote_user_name: ubuntu apt_repo_data: "deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable" apt_gpg_key: https://download.docker.com/linux/ubuntu/gpg tasks: - name: adding docker gpg key apt_key: url: "{{ apt_gpg_key }}" state: present - name: add docker ...
Read now
Unlock full access