Skip to content

Instantly share code, notes, and snippets.

@asadlive84
Last active October 21, 2023 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asadlive84/6e0757eb59b0c100f474e665d2dc8c3d to your computer and use it in GitHub Desktop.
Save asadlive84/6e0757eb59b0c100f474e665d2dc8c3d to your computer and use it in GitHub Desktop.
Docker learning commands

Dokcer most useful commands

remove commands

sudo docker system prune -f

docker volume rm $(docker volume ls -q) -f

docker network rm $(docker network ls -q) -f

docker rmi $(docker images -aq) -f

docker rm $(docker ps -aq) -f

execute any command to running container


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