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/incidental_setup_docker/tasks/Fedora.yml

20 lines
496 B
YAML

- name: Add repository
yum_repository:
file: docker-ce
name: docker-ce-stable
description: Docker CE Stable - $basearch
baseurl: https://download.docker.com/linux/fedora/$releasever/$basearch/stable
enabled: yes
gpgcheck: yes
gpgkey: https://download.docker.com/linux/fedora/gpg
- name: Update cache
command: dnf makecache
- name: Install docker
dnf:
name: "{{ docker_packages }}"
state: present
enablerepo: docker-ce-test
notify: cleanup docker