Skip to content

Instantly share code, notes, and snippets.

View KayShen's full-sized avatar

KayShen KayShen

  • New York
View GitHub Profile
@KayShen
KayShen / docker-cleanup-resources.md
Last active July 24, 2019 20:39 — forked from bastman/docker-cleanup-resources.md
docker cleanup guide: containers, images, volumes, networks

Docker 清理

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

@KayShen
KayShen / tmux-cheatsheet.markdown
Last active July 24, 2019 20:40 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname