You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/setup_docker/tasks/Fedora.yml

21 lines
424 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