Update ansible/playbooks/deploy-docker.yml
This commit is contained in:
parent
0148a82189
commit
e39e54f1fd
1 changed files with 5 additions and 3 deletions
|
@ -21,6 +21,8 @@
|
||||||
remove_orphans: true
|
remove_orphans: true
|
||||||
register: docker_compose_output
|
register: docker_compose_output
|
||||||
|
|
||||||
- name: Display docker compose output
|
- name: Display container states
|
||||||
ansible.builtin.debug:
|
debug:
|
||||||
var: docker_compose_output
|
msg: >
|
||||||
|
Container {{ item.Name }} - {{ item.Status }}
|
||||||
|
with_items: "{{ docker_compose_output.containers }}"
|
||||||
|
|
Reference in a new issue