Skip to content

Instantly share code, notes, and snippets.

@coolnalu
Last active April 18, 2016 02:32
Show Gist options
  • Save coolnalu/1d13f6968647aa8e309c3103e78a545c to your computer and use it in GitHub Desktop.
Save coolnalu/1d13f6968647aa8e309c3103e78a545c to your computer and use it in GitHub Desktop.
Docker commands
# List docker images/containers
docker images
docker ps
docker ps -a (include stopped containers)
# Remove docker images/containers
docker rmi image-sha
docker rm container-sha
# SSH into container
docker exec -it container-sha bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment