Skip to content

Instantly share code, notes, and snippets.

@nullthefirst
Last active August 13, 2019 17:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nullthefirst/64bdbb985356625294d4883c5b01f8af to your computer and use it in GitHub Desktop.
Save nullthefirst/64bdbb985356625294d4883c5b01f8af to your computer and use it in GitHub Desktop.
Basic Docker Commands
## List Docker CLI commands
docker
docker container --help
## Display Docker version and info
docker --version
docker version
docker info
## Execute Docker image
docker run hello-world
## List Docker images
docker image ls
## List Docker containers (running, all, all in quiet mode)
docker container ls
docker container ls --all
docker container ls -aq
@nullthefirst
Copy link
Author

Visit the Docker documentation for more information.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment