pilot-playbooks/playbooks/app-stop.yml
2022-07-02 15:24:45 +02:00

17 lines
333 B
YAML

---
- name: Start app
hosts: all
become: yes
tasks:
- name: Run container
community.docker.docker_compose:
project_src: "{{ working_dir }}/{{ container_name }}"
build: no
files:
- docker-compose.pilot.yml
stopped: yes
register: output
- debug:
var: output