16 lines
422 B
YAML
16 lines
422 B
YAML
---
|
|
- name: Start every compose stack on each host, in the order spinup.sh defines
|
|
hosts: all
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Run spinup.sh
|
|
ansible.builtin.command: ./spinup.sh
|
|
args:
|
|
chdir: "/home/{{ deploy_user }}/services/{{ service_group }}"
|
|
register: _spinup
|
|
changed_when: true
|
|
|
|
- name: Show spinup output
|
|
ansible.builtin.debug:
|
|
var: _spinup.stdout_lines
|