Skip to content

Commit

Permalink
Docker compose ps on all containers
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Jan 15, 2025
1 parent 9d13544 commit 6cec279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c2cciutils/scripts/docker_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def main() -> None:

if os.path.exists("docker-compose.yaml"):
_print("::group::Docker Compose ps")
subprocess.run(["docker", "compose", "ps"], check=False)
subprocess.run(["docker", "compose", "ps", "--all"], check=False)
_print("::endgroup::")

_print("::group::Docker ps")
Expand Down

0 comments on commit 6cec279

Please sign in to comment.