fix role docker_compose: pull and restart #243

Merged
mg merged 5 commits from inline into master 2024-11-15 21:37:29 +01:00
Showing only changes of commit ae87e28245 - Show all commits

View file

@ -51,9 +51,17 @@
when:
- item.network is defined
- name: Pull images
become: true
ansible.builtin.command: docker-compose pull
args:
chdir: "{{ compose_dest_basedir }}/{{ item.name }}"
register: pull_result # speichere ergebnis in var
changed_when: "pull_result.rc == 0" # markiere tasks als changed when exit-code == 0
- name: (re)start container
become: true
ansible.builtin.command: "docker-compose pull && docker-compose up -d"
ansible.builtin.command: docker-compose up -d
args:
chdir: "{{ compose_dest_basedir }}/{{ item.name }}"
register: start_result # speichere ergebnis in var