9 lines
243 B
YAML
9 lines
243 B
YAML
---
|
|
- name: Restart main Docker stack
|
|
become: true
|
|
community.docker.docker_compose_v2:
|
|
# This targets the first directory in the list you defined in your host_vars
|
|
project_src: "{{ docker_compose_dirs[0] }}"
|
|
state: restarted
|
|
|