Debug School

Mohan
Mohan

Posted on

How can you inspect the contents of a Docker container and the changes made to a container while it was running?

docker inspect design_patterns will show you some info about the running container or just get into the container docker exec -it design_patterns bash this will drop you into a bash shell into the container, then you can inspect the current state with regular bash commands

Top comments (0)