Enable docker and podman

This commit is contained in:
2020-12-20 17:46:32 -06:00
parent fce8a753dc
commit dda2d043fc
2 changed files with 16 additions and 0 deletions

View File

@@ -17,4 +17,14 @@
- role: 'ensure_repo_rpmfusion'
- role: 'ensure_selinux'
- role: 'ensure_timezone'
- name: 'docker'
hosts: 'docker'
gather_facts: 'yes'
roles:
- role: 'ensure_docker'
- name: 'podman'
hosts: 'podman'
gather_facts: 'yes'
roles:
- role: 'ensure_podman'
...