Docker Machine: No space left on device

后端 未结 7 2032
滥情空心
滥情空心 2021-01-29 17:13

I\'m trying to set up Docker Machine with Docker Compose.

Scenario 1 (without Docker Machine)
If I run docker-compose up -d without Doc

7条回答
  •  孤城傲影
    2021-01-29 18:17

    I ran into this problem and could not add additional space with the docker UI for mac, I installed docker with homebrew and ran the following command when creating my machine:

    docker-machine create --driver virtualbox --virtualbox-memory "2048" --virtualbox-disk-size "40000" default

    this adds double the space for memory and disk size to the virtualbox that I had before and you can add the settings size here that you need as you see fit

提交回复
热议问题