workflow battlecard

Container Diagnostics

Inspect Docker containers, logs, and runtime state.

Step 1

docker: list-all-docker-containers

List running containers and find the target container.

docker ps -a

Step 2

docker: fetch-and-follow-container-logs

Read container logs for errors and recent output.

docker logs -f <container_name>

Step 3

docker: open-interactive-shell-in-container

Inspect container state or open a shell for deeper checks.

docker exec -it <container_name> <sh>