Initial project commit

This commit is contained in:
2024-12-16 19:59:57 -05:00
commit fa1b5cce00
3409 changed files with 460909 additions and 0 deletions

28
docker-compose-mgt.yml Normal file
View File

@ -0,0 +1,28 @@
---
- name: Something
hosts: mailcow_dev
become: false
gather_facts: false
tasks:
- name: Docker Compose Something
ansible.builtin.command:
cmd: "docker-compose up -d"
chdir: /opt/mailcow-dockerized
changed_when: false
register: compose_output
- name: Debug compose_output
ansible.builtin.debug:
var: compose_output
- name: Docker Compose Something
ansible.builtin.command:
cmd: "docker-compose down"
chdir: /opt/mailcow-dockerized
changed_when: false
register: compose_output
- name: Debug compose_output
ansible.builtin.debug:
var: compose_output