Files
AnsibleTest/A000002.yml
T
CHIEFSOFT\ameye 431bf8feeb added params
2025-01-26 08:26:03 -05:00

20 lines
499 B
YAML

---
- 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