Last active
July 18, 2021 08:10
-
-
Save PraneethKarnena/47b5622147806b6abfec7598a5acca9a to your computer and use it in GitHub Desktop.
A list of Docker commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Images | |
# nginx, rabbitmq | |
# Run a container from a image | |
# Check if the image exists locally, else, pull from Docker hub | |
sudo docker run nginx | |
# List all running containers | |
# Each container has a unique name & ID | |
sudo docker ps | |
# List all active & inactive containers | |
sudo docker ps -a | |
# List all images | |
sudo docker images -a | |
# Stop a container | |
docker stop containerid/name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment