Role: docker_compose: replace command with module #214

Merged
mg merged 7 commits from dcm into master 2024-10-23 17:59:35 +02:00
Showing only changes of commit d06f05cdb3 - Show all commits

View file

@ -53,9 +53,9 @@
- name: (re)start container
become: true
ansible.builtin.command: docker-compose up -d
args:
chdir: "{{ compose_dest_basedir }}/{{ item.name }}"
community.docker.docker_compose_v2:
project_src: "{{ compose_dest_basedir }}/{{ item.name }}"
state: restarted
register: start_result # speichere ergebnis in var
changed_when: "start_result.rc == 0" # markiere tasks als changed when exit-code == 0
loop: "{{ compose_files }}"