Skip to content

Instantly share code, notes, and snippets.

@marcelocg
Last active May 22, 2020 15:03
Show Gist options
  • Select an option

  • Save marcelocg/f1a2dd3e9bae1e1bd64e to your computer and use it in GitHub Desktop.

Select an option

Save marcelocg/f1a2dd3e9bae1e1bd64e to your computer and use it in GitHub Desktop.
Useful docker command lines
# Stop all containers
docker stop $(docker ps -a -q)
# Remove all containers
docker rm $(docker ps -a -q)
# Remove all volumes
docker volume rm $(docker volume ls -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment