初心者向けです
devcontainerで環境構築していてトライアンドエラーしていると、docker関連のファイルが貯まるので
全削除に使うコマンド
注意
全部消えるので注意してください。
WARNING! This will remove:
- all stopped containers
- all networks not used by at least one container
- all volumes not used by at least one container
- all images without at least one container associated to them
- all build cache
まずは使用量
docker system df
全削除
docker system prune --all --volumes
たまに残る時
docker rm -f `docker ps -a -q`
docker system prune --all --volumes