An Ansible role that installs the latest version of Docker CE on Ubuntu based on the official installation instructions.
N/A
docker_users
: a list of users to add to the docker group. They will not be evaluated until a session is created.
N/A
- hosts: all
become: true
pre_tasks:
- name: Update apt cache.
apt:
update_cache: true
cache_valid_time: 600
changed_when: false
roles:
- role: ansible-docker
GPLv3