Skip to content

Instantly share code, notes, and snippets.

@asadadams
Created April 12, 2020 08:48
Show Gist options
  • Save asadadams/301be085b70d9cb0d33feb3ba93426a5 to your computer and use it in GitHub Desktop.
Save asadadams/301be085b70d9cb0d33feb3ba93426a5 to your computer and use it in GitHub Desktop.
Docker commands
docker images - Show all images on system
docker pull [image name] - Pull image
docker rmi [image id] - Remove image
docker ps -a - show all running containers
docker run -it -d [image name] - Run image as container
docker stop [container id] - Stop running container
docker commit [container id] [docker hub username]/[image name] - Stop running container
docker push - push created container
docker rm [container id] - remove container
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment