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

18 lines
358 B
YAML

- name: Install Docker pre-reqs
dnf:
name: "{{ item }}"
state: present
items:
- dnf-plugins-core
- name: Add repository
command: dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
- name: Update cache
command: dnf makecache fast
- name: Install docker
dnf:
name: docker-ce
state: present