mirror of
https://github.com/Aroy-Art/Aroy-Art-Site.git
synced 2025-01-04 05:04:22 +01:00
1.8 KiB
1.8 KiB
title | description | date | lastmod | image | tags | slug | draft | ||||
---|---|---|---|---|---|---|---|---|---|---|---|
Goodies to know for Docker & Docker-Compose | This is my list of use full Docker commands. | 2024-11-06T21:05:38.188Z | 2024-12-27T11:26:27.203Z | /images/blog/Image-Docker-Command-Cheat-Sheet.png |
|
docker-compose-cheat-sheet | true |
This is the colleton of useful knowledge this kitty has gathered for Docker and Docker-Compose over a long time.
{{< toc >}}
How to cleanup (unused) resources
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
If you use a Docker version newer than > 1.13 you can use Dockers builtin cleanup tool purge
.
The new way (Docker > 1.13)
Network
To purge the networks (Docker Docs)
docker network prune
Containers, Volumes, Images
And to purge the docker system (Docker Docs)
docker system prune
The old way (Docker < 1.13)
Delete Volumes
{{< alert theme="info" >}} // see: https://github.com/chadoe/docker-cleanup-volumes {{< /alert >}}
docker volume rm $(docker volume ls -qf dangling=true)
or
docker volume ls -qf dangling=true | xargs -r docker volume rm
Delete Networks
docker network ls
docker network ls | grep "bridge"
docker network rm $(docker network ls | grep "bridge" | awk '/ / { print $1 }')
or
docker network ls | awk '$3 == "bridge" && $2 != "bridge" { print $1 }'
Conclusion
First of thanks for reading this.
I hope this has been helpful and if you have any questions, suggestions or something i may have missed, please let me know.