Skip to content

Instantly share code, notes, and snippets.

View Naeemo's full-sized avatar
🍼

Naeemo Naeemo

🍼
View GitHub Profile
@Naeemo
Naeemo / 0-go-os-arch.md
Created November 13, 2021 08:40 — forked from asukakenji/0-go-os-arch.md
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@Naeemo
Naeemo / docker-cleanup-resources.md
Created June 12, 2020 09:49 — forked from bastman/docker-cleanup-resources.md
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

$ docker volume rm $(docker volume ls -qf dangling=true)

$ docker volume ls -qf dangling=true | xargs -r docker volume rm