Initial commit

This commit is contained in:
Pin
2022-04-20 22:57:21 -04:00
commit c80371138a
13 changed files with 279 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
---
- name: Install Docker and Docker Compose (and Pip)
package:
name: "{{ package_name }}"
state: present
loop:
- docker
- docker-compose
- python3-pip
loop_control:
loop_var: package_name
...