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

17 lines
373 B
YAML

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