You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run the Dockerfile CMD
docker run <image_name># Interactive bash, and remove container afterwards
docker run -it --rm <image_name> /bin/bash
# Port mapping
docker run -it -p <host>:<container><image_name>
Run interactive: docker run -it <image_name> [cmd]
Detach: ^p, ^q
Attach: docker attach <container>
Inspect
# inspect a running container
docker inspect <container_name> (or <container_id>)
# Get the process ID for a container# Source: https://github.com/jpetazzo/nsenter
docker inspect --format {{.State.Pid}} <container_name_or_ID># List the current mounted volumes for a container (and pretty print)# Source:# http://nathanleclaire.com/blog/2014/07/12/10-docker-tips-and-tricks-that-will-make-you-sing-a-whale-song-of-joy/
docker inspect --format='{{json .Volumes}}'<container_id>| python -mjson.tool