Files
MermsProvision/ANSIBLE/templates/A000003.yml
T
CHIEFSOFT\ameye 74e1c146b3 DESTINATION_FOLDER
2025-01-19 21:17:25 -05:00

22 lines
518 B
YAML

---
- hosts: WHAT_HOST_IN_USE
tasks:
- name: Creates directory DESTINATION_FOLDER
ansible.builtin.file:
path: DESTINATION_FOLDER
state: directory
owner: www-data
group: www-data
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