docker compose build --no-cache で エラーが起きる
$ dc build --no-cache
failed to solve: failed to copy files: userspace copy failed: write /var/lib/docker/~ : no space left on device
Dockerのストレージ使用量を調べる
$ docker system df
Docker が使っている使わない容量をあける
$ docker system prune -a --volumes
-a すべてを削除します
--volumes ボリュームも削除します
これで再度ビルドすればOK。
#docker