Step 1
docker: list-all-docker-containers
List running containers and find the target container.
docker ps -a workflow battlecard
Inspect Docker containers, logs, and runtime state.
Step 1
List running containers and find the target container.
docker ps -a Step 2
Read container logs for errors and recent output.
docker logs -f <container_name> Step 3
Inspect container state or open a shell for deeper checks.
docker exec -it <container_name> <sh>