0
0

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 3 years have passed since last update.

no space left on device エラーが出た時の対処法

Posted at

##はじめに
僕がDocker環境で開発をしている時にdocker-compose buildをした際に同じエラーが2回出たので忘れないようにと思い投稿しました
##今回のエラー対処
まだ学習して日が浅いため容量が足りないとしかわからなかったため2つの方法を試した
##imageを一括削除
僕自身このやり方が一番効いた
buildを繰り返すとその分imageがどんどん積まれて、容量が使われる。

$ docker image prune
#削除してもいいですか?と効かれるのでyを入れてEnter
WARNING! This will remove all dangling images.
Are you sure you want to continue? [y/N] y

これは最新のbuildだけ残してその他を一括削除して容量を減らしてくれる優れもの!
##volumeの削除
これも少し効果があった

#有効でないvolumesを確認する
$ docker system df
$ docker volume ls -q -f dangling=true
# 参照されてないvolumesの削除
$ docker volume rm `docker volume ls -q -f dangling=true`

##参照
とても勉強になりました。ありがとうございます。
https://qiita.com/sakymark/items/df58ea2fd9179eddc566

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?