A00006 added

This commit is contained in:
CHIEFSOFT\ameye
2025-10-11 11:51:43 -04:00
parent 2adfd1d85a
commit 1b37af20d8
3 changed files with 49 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
---
- hosts: WHAT_HOST_IN_USE
tasks:
- name: Creates directory DESTINATION_FOLDER
ansible.builtin.file:
path: DESTINATION_FOLDER
state: directory
mode: 0775
recurse: yes
- name: Set up docker-compose file
template:
src: "WHAT_PART_LOCAL/docker-compose.yml"
dest: "DESTINATION_FOLDER"
- name: docker compose up
shell:
chdir: "DESTINATION_FOLDER/"
cmd: docker-compose up -d