Skip to content

Instantly share code, notes, and snippets.

View VicoErv's full-sized avatar
:dependabot:

Vico Erv VicoErv

:dependabot:
View GitHub Profile
POST /api/v1/media/1807726041370472505/17927162260144101/story_poll_vote/ HTTP/1.1
Host: i.instagram.com
X-IG-Low-Data-Mode-Video: true
X-IG-Connection-Speed: 5189kbps
Accept: */*
X-IG-Low-Data-Mode-Image: true
X-IG-Connection-Type: WiFi
X-IG-App-ID: 124024574287414
Accept-Language: en-ID;q=1, id-ID;q=0.9, ja-JP;q=0.8, ko-KR;q=0.7
Accept-Encoding: br, gzip, deflate
https://fonts.google.com/specimen/Raleway
https://fonts.google.com/specimen/Quicksand/
https://snipcart.com/blog/vuejs-tutorial-seo-example
@VicoErv
VicoErv / docker-cleanup-resources.md
Created March 7, 2018 00:51 — 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

130