Skip to content

Commit e39e54f

Browse files
author
mafyuh
committedDec 20, 2024
Update ansible/playbooks/deploy-docker.yml
1 parent 0148a82 commit e39e54f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎ansible/playbooks/deploy-docker.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
remove_orphans: true
2222
register: docker_compose_output
2323

24-
- name: Display docker compose output
25-
ansible.builtin.debug:
26-
var: docker_compose_output
24+
- name: Display container states
25+
debug:
26+
msg: >
27+
Container {{ item.Name }} - {{ item.Status }}
28+
with_items: "{{ docker_compose_output.containers }}"

0 commit comments

Comments
 (0)
Please sign in to comment.