Skip to content

Instantly share code, notes, and snippets.

View sunjayaali's full-sized avatar

Ali Sunjaya sunjayaali

  • Jakarta, Indonesia
View GitHub Profile
@gerep
gerep / compact.go
Last active June 29, 2021 18:32
Compacting json data removing unused spaces: https://golang.org/pkg/encoding/json/#Compact
package main
import (
"bytes"
"encoding/json"
"fmt"
)
func main() {
data := `{ "spacedValue": "spaced value" }`
@bastman
bastman / docker-cleanup-resources.md
Created March 31, 2016 05:55
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