Update deploy.yml

This commit is contained in:
Matt Reeves 2024-06-10 02:49:54 +00:00
parent 3f14478270
commit 41f7d9823e

View file

@ -18,8 +18,16 @@
command: docker compose up -d
args:
chdir: "{{ repo_path }}"
register: docker_output
register: docker_compose_output
- name: Display docker output
debug:
var: docker_compose_output.stdout_lines
- name: Run Docker Command
command: docker ps
register: docker_output
- name: Display Docker Output
debug:
var: docker_output.stdout_lines