mirror of https://github.com/ansible/ansible.git
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.
19 lines
382 B
YAML
19 lines
382 B
YAML
7 years ago
|
- name: Install Docker pre-reqs
|
||
|
dnf:
|
||
|
name: "{{ item }}"
|
||
|
state: present
|
||
7 years ago
|
loop:
|
||
7 years ago
|
- dnf-plugins-core
|
||
|
|
||
|
- name: Add repository
|
||
|
command: dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
|
||
|
|
||
|
- name: Update cache
|
||
7 years ago
|
command: dnf makecache
|
||
7 years ago
|
|
||
|
- name: Install docker
|
||
|
dnf:
|
||
|
name: docker-ce
|
||
|
state: present
|
||
7 years ago
|
enablerepo: docker-ce-test
|