2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

DockerのImagesを作りすぎて新しいDocker環境がつくれなくなった

Posted at

直面したエラー

オンプレサーバーの中でDockerを利用した開発環境を作成するためにdocker compose build --no-cacheを多用していたところ、以下のエラーに直面しました。

// 略

#0 30.63 Error Summary
#0 30.63 -------------
#0 30.63 Disk Requirements:
#0 30.63    At least 346MB more space needed on the / filesystem.

ディスク利用状況の確認

Dockerのディスク利用状況を確認してみると。。。

$ docker system df
TYPE            TOTAL     ACTIVE    SIZE      RECLAIMABLE
Images          41        2         13.91GB   13.24GB (95%)
Containers      2         2         187.7kB   0B (0%)
Local Volumes   16        1         1.285GB   930.4MB (72%)
Build Cache     435       0         12.66GB   12.66GB

不要なImagesとcacheがたまってそれぞれ13.91GB, 12.666GBを食っていました。

Volumesを整理

Volumsの整理用のコマンドを実行することで解決しました。

$ docker system prune -a --volumes

参考

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?