Reputation: 203
I'm new in docker. I have installed docker in windows in the D drive but the Boot2docker VM is in the user folder in the C drive.
I dont have enough space in the C and the boot2docker is growing when i pull softwares from the docker hub.
So I want to move the boot2docker or the .docker folder in the D drive.
Is it possible ? and how can i do ?
Upvotes: 20
Views: 6779
Reputation: 24600
You can store the images outside of the VirtualBox images. You don't have to move the disk. I like this idea, because the disk by VirtualBox is limited, but if you host in the host, in have the same storage that the host have.
Do it by using VirtualBox shared folder option.
I was able to use a folder in C:\
drive, for all the data that docker needs.
To do so you have to mount /var/lib/docker
to a local folder in your host machine.
Set "Auto-Mount", but do not set "Read-Only".
Upvotes: 2
Reputation: 1375
C:\Users\$USERNAME\VirtualBox VMs\boot2docker-vm\boot2docker-vm.vmdk
to drive D:
(don't delete it just yet).File / Virtual Media Manager
.Upvotes: 18
Reputation: 60123
Moving existing disk
The big size for the VM machine is .vmdk
or .vdi
, so you just need to move the disk to Drive D instead of moving whole .docker
directory.
What you can do in simple way in Oracle VirtualBox Manager GUI:
boot2docker
VM, and find the place disk.vmdk
under
Setting->Storagedisk.vmdk
to Disk D (any place)disk.vmdk
in VirtualBox Managerdisk.vmdk
from Disk D. make sure the SATA port number is the samedisk.vmdk
in Disk C to save space if migration is finished.It shall work as I am always lack of disk space and move those disks around
For new created disk
Normal it will create to your use default user directory, but it is possible to redirect to new place by using flag --storage-path
during creation
$ docker-machine --storage-path f: create -d virtualbox dev
see related questions in How can I make docker-machine create a VM in a specific location
Upvotes: 19