Skip to content

Instantly share code, notes, and snippets.

@ryanlid
Created January 21, 2018 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanlid/f6c5143441db0d4e5fc3532b5b59a152 to your computer and use it in GitHub Desktop.
Save ryanlid/f6c5143441db0d4e5fc3532b5b59a152 to your computer and use it in GitHub Desktop.
macOS中删除docker所有的images,containers,及其其他数据,以恢复磁盘空间。
docker rm $(docker ps -a -q)
docker rmi $(docker images -q)
docker volume rm $(docker volume ls |awk '{print $2}')
rm -rf ~/Library/Containers/com.docker.docker/Data/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment