ansible-role-docker-compose/tasks/running.yml

16 lines
367 B
YAML
Raw Normal View History

---
- include_tasks: present.yml
- name: Restart Service
community.docker.docker_compose:
project_src: "{{ service_dir | mandatory }}"
pull: true
state: present
restarted: true
recreate: smart
build: false
profiles: docker_profiles
remove_orphans: true
when: (compose_files.changed and execute == "smart") or execute == "always"