Skip to content

Instantly share code, notes, and snippets.

View wrasdf's full-sized avatar
:octocat:
Working with github

kerry wang wrasdf

:octocat:
Working with github
  • Senior Devops Engineer At Zip
  • Melbourne
  • 01:44 (UTC -12:00)
View GitHub Profile
#!/usr/bin/env bash -x
# set -x
export AWS_DEFAULT_REGION=us-east-1
lang=en
account_id=$(aws sts get-caller-identity | jq -r '.Account')
aws support describe-trusted-advisor-checks \
--language $lang \
@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