Tonne of updates

This commit is contained in:
2026-02-18 17:15:31 -07:00
parent 56e262ad8b
commit 1a1f12c45b
176 changed files with 12786 additions and 388 deletions

View File

@@ -0,0 +1,18 @@
---
- name: Restart Changemaker stack
ansible.builtin.command:
cmd: docker compose up -d --remove-orphans
chdir: "{{ cml_deploy_path }}"
changed_when: true
- name: Restart API only
ansible.builtin.command:
cmd: docker compose restart api
chdir: "{{ cml_deploy_path }}"
changed_when: true
- name: Restart Nginx only
ansible.builtin.command:
cmd: docker compose restart nginx
chdir: "{{ cml_deploy_path }}"
changed_when: true