Skip to content

Instantly share code, notes, and snippets.

@PraneethKarnena
Last active July 18, 2021 08:10
Show Gist options
  • Save PraneethKarnena/47b5622147806b6abfec7598a5acca9a to your computer and use it in GitHub Desktop.
Save PraneethKarnena/47b5622147806b6abfec7598a5acca9a to your computer and use it in GitHub Desktop.
A list of Docker commands
# 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