mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
18 lines
358 B
YAML
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
|