6b2b876d43
podman 1.4 now installs docker man pages. Add handler to remove docker packages to avoid test failure due to this conflict. Adjust inventory_docker_swarm integration test Add conditional to cleanup handlers to allow use of the setup_docker role without removing packages at the end of the play. The inventory_docker_swarm integration tests does its own cleanup.
21 lines
449 B
YAML
21 lines
449 B
YAML
- name: Install Docker pre-reqs
|
|
dnf:
|
|
name: "{{ docker_prereq_packages }}"
|
|
state: present
|
|
|
|
- name: Add repository
|
|
command: dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
|
|
args:
|
|
warn: no
|
|
|
|
- name: Update cache
|
|
command: dnf makecache
|
|
args:
|
|
warn: no
|
|
|
|
- name: Install docker
|
|
dnf:
|
|
name: "{{ docker_packages }}"
|
|
state: present
|
|
enablerepo: docker-ce-test
|
|
notify: cleanup docker
|