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

12
handlers/main.yml Normal file
View File

@@ -0,0 +1,12 @@
---
- name: Init Docker
service:
name: docker
state: started
enabled: "true"
- name: Restart Docker DVWA
service:
name: dvwa-docker
state: restarted
...