Skip to content

Instantly share code, notes, and snippets.

@ArgonQQ
Last active September 24, 2019 11:12
Show Gist options
  • Save ArgonQQ/baa503d246f3066b19a20042eb809e98 to your computer and use it in GitHub Desktop.
Save ArgonQQ/baa503d246f3066b19a20042eb809e98 to your computer and use it in GitHub Desktop.
🐳 Docker Cheatsheet 🐳
#stop all docker container
docker stop $(docker ps -a -q)
#rm all docker container
docker rm $(docker ps -a -q)
#show Volume Mounts
docker inspect -f '{{ .Mounts }}' CONTAINERNAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment