LoginSignup
5
5

More than 5 years have passed since last update.

Docker Toolbox(Windows)を使っていて"no space left on device"が出た時の対応

Posted at

問題

By default the VM is created with 20GB of disk space.

解決

docker-machineでdefaultを作り直し。

準備

  • コンテナのimageはexportしておく

default作り直し

200GBにする。

  • Docker Quickstart Terminalをクリックしてターミナルを起動
  • 以下を実行
$ docker-machine stop default
$ docker-machine rm default
$ docker-machine -D create -d virtualbox --virtualbox-disk-size "200000" default
5
5
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
5
5