This Ansible role installs and configures Docker CE (Community Edition) on several different Linux distributions. The goal is to let the user of this role to just care about how Docker shall be installed and configured and hide the differences that exists in the different distributions.
- One way to install and configure Docker CE across supported Linux distributions.
- Support install of Docker SDK and Docker Compose.
- Best effort support of installations of Docker plugins.
- Best effort uninstall of Docker CE and related configuration
- Do tweaks etc to avoid buggy or non-working configurations in some supported distributions.
- Ease handling of setting up Docker according to Center of Internet Security (CIS) documentation.
- CentOS
- Debian
- Fedora
- Linux Mint† (based on Ubuntu).
- Raspbian (based on Debian)
- RHEL†
- Ubuntu
† NB: Docker does not officially support Docker CE on this distribution.
See changelog here
2.6
or later
For this role to support multiple Ansible versions it is not possible to avoid all Ansible deprecation warnings. Read Ansible documentation if you want to disable deprecation warnings.
This role tries to support the lowest supported Ansible version to the most recent listed here
No additional requirements.
Variables related to this role are listed here
None.
Following sub sections show different kind of examples to illustrate what this role supports.
- hosts: docker
roles:
- role: haxorof.docker_ce
- hosts: docker
vars:
docker_daemon_envs:
HTTP_PROXY: http://localhost:3128/
NO_PROXY: localhost,127.0.0.1,docker-registry.somecorporation.com
roles:
- haxorof.docker_ce
- hosts: test-host
vars:
docker_sdk: true
docker_compose: true
roles:
- haxorof.docker_ce
post_tasks:
- name: Test hello container
become: yes
docker_container:
name: hello
image: hello-world
- name: Test hello service
become: yes
docker_service:
project_name: hello
definition:
version: '3'
services:
hello:
image: "hello-world"
This minimal example below show what kind of role configuration that is required to pass the Docker bench checks.
However this configuration setup devicemapper in a certain way which will create logical volumes for the containers. Simplest is to have at least 3 GB of free space available in the partition. Since Docker v17.06 it is possible to just set the storage option dm.directlvm_device
to make Docker create the necessary volumes:
- hosts: docker
vars:
docker_plugins:
- type: authz
alias: opa-docker-authz
name: openpolicyagent/opa-docker-authz-v2:0.4
args: opa_args="-policy-file /opa/policies/authz.rego"
docker_enable_audit: yes
docker_daemon_config:
icc: false
log-driver: journald
userns-remap: default
live-restore: true
userland-proxy: false
no-new-privileges: true
roles:
- haxorof.docker_ce
Because the configuration above requires Linux user namespaces to be enabled then additional GRUB arguments might be needed. Example below show one example what changes that might be needed and reboot of the host is required for the changes to take full affect.
# https://success.docker.com/article/user-namespace-runtime-error
- hosts: docker
roles:
- role: jtyr.grub_cmdline
vars:
grub_cmdline_add_args:
- namespace.unpriv_enable=1
- user_namespace.enable=1
become: yes
tasks:
- name: set user.max_user_namespaces
sysctl:
name: user.max_user_namespaces
value: 15000
sysctl_set: yes
state: present
reload: yes
become: yes
For a more complete working example on CentOS 7 have a look here.
Here is the latest test results of the automated test which is located in the tests directory:
Note! All distributions listed in test matrix below does not provided the latest released Docker CE version.
Last run: 2019-07-08 (Latest release: Docker CE 18.09)
Suite | ID | Comment |
---|---|---|
s-1 | t_config | |
s-2 | t_channel | These tests might fail because it might not be any nightly Docker CE build available |
s-3 | t_postinstall | |
s-4 | t_old_docker | |
s-5 | t_devicemapper_config | |
s-6 | t_auditd | |
s-7 | t_docker_compatibility |
# | s-1 | s-2 | s-3 | s-4 | s-5 | s-6 | s-7 |
---|---|---|---|---|---|---|---|
centos/7 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ➖ |
centos/8 | ❌ | ❌ | ❌ | ➖ | ❌ | ❌ | ➖ |
generic/ubuntu1604 | ✔️ | ✔️ | ✔️ | ➖ | ✔️ | ✔️ | ✔️ |
generic/ubuntu1710 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/ubuntu1804 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/ubuntu1810 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/ubuntu1904 | ✔️ | ❌ | ✔️ | ✔️ | ✔️ | ➖ | |
generic/debian8 | ✔️ | ❌ | ❌ | ➖ | ✔️ | ✔️ | ➖ |
generic/debian9 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/debian10 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/fedora25 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/fedora26 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/fedora27 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/fedora28 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/fedora29 | ✔️ | ❌ | ✔️ | ➖ | ✔️ | ✔️ | ➖ |
generic/fedora30 | ✔️ | ❌ | ✔️ | ➖ | ❌ | ❌ | ➖ |
rhel/7 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ➖ |
rhel/8 | ❌ | ❌ | ❌ | ➖ | ❌ | ❌ | ➖ |
This is an open source project under the MIT license.