mirror of https://github.com/docker/docs.git
Carries and closes 13361
Signed-off-by: Mary Anthony <mary@docker.com>
This commit is contained in:
parent
7aa554c444
commit
2c5e044b59
|
@ -12,39 +12,94 @@ parent = "smn_win_osx"
|
||||||
|
|
||||||
If you're using Boot2Docker with a large number of images, or the images you're
|
If you're using Boot2Docker with a large number of images, or the images you're
|
||||||
working with are very large, your pulls might start failing with "no space left
|
working with are very large, your pulls might start failing with "no space left
|
||||||
on device" errors when the Boot2Docker volume fills up. The solution is to
|
on device" errors when the Boot2Docker volume fills up. There are two solutions
|
||||||
increase the volume size by first cloning it, then resizing it using a disk
|
you can try.
|
||||||
partitioning tool.
|
|
||||||
|
|
||||||
We recommend [GParted](http://gparted.sourceforge.net/download.php/index.php).
|
## Solution 1: Add the `DiskImage` property in boot2docker profile
|
||||||
The tool comes as a bootable ISO, is a free download, and works well with
|
|
||||||
VirtualBox.
|
|
||||||
|
|
||||||
## 1. Stop Boot2Docker
|
The `boot2docker` command reads its configuration from the `$BOOT2DOCKER_PROFILE` if set, or `$BOOT2DOCKER_DIR/profile` or `$HOME/.boot2docker/profile` (on Windows this is `%USERPROFILE%/.boot2docker/profile`).
|
||||||
|
|
||||||
|
1. View the existing configuration, use the `boot2docker config` command.
|
||||||
|
|
||||||
|
$ boot2docker config
|
||||||
|
# boot2docker profile filename: /Users/mary/.boot2docker/profile
|
||||||
|
Init = false
|
||||||
|
Verbose = false
|
||||||
|
Driver = "virtualbox"
|
||||||
|
Clobber = true
|
||||||
|
ForceUpgradeDownload = false
|
||||||
|
SSH = "ssh"
|
||||||
|
SSHGen = "ssh-keygen"
|
||||||
|
SSHKey = "/Users/mary/.ssh/id_boot2docker"
|
||||||
|
VM = "boot2docker-vm"
|
||||||
|
Dir = "/Users/mary/.boot2docker"
|
||||||
|
ISOURL = "https://api.github.com/repos/boot2docker/boot2docker/releases"
|
||||||
|
ISO = "/Users/mary/.boot2docker/boot2docker.iso"
|
||||||
|
DiskSize = 20000
|
||||||
|
Memory = 2048
|
||||||
|
CPUs = 8
|
||||||
|
SSHPort = 2022
|
||||||
|
DockerPort = 0
|
||||||
|
HostIP = "192.168.59.3"
|
||||||
|
DHCPIP = "192.168.59.99"
|
||||||
|
NetMask = [255, 255, 255, 0]
|
||||||
|
LowerIP = "192.168.59.103"
|
||||||
|
UpperIP = "192.168.59.254"
|
||||||
|
DHCPEnabled = true
|
||||||
|
Serial = false
|
||||||
|
SerialFile = "/Users/mary/.boot2docker/boot2docker-vm.sock"
|
||||||
|
Waittime = 300
|
||||||
|
Retries = 75
|
||||||
|
|
||||||
|
The configuration shows you where `boot2docker` is looking for the `profile` file. It also output the settings that are in use.
|
||||||
|
|
||||||
|
|
||||||
|
2. Initialise a default file to customize using `boot2docker config > ~/.boot2docker/profile` command.
|
||||||
|
|
||||||
|
3. Add the following lines to `$HOME/.boot2docker/profile`:
|
||||||
|
|
||||||
|
# Disk image size in MB
|
||||||
|
DiskSize = 50000
|
||||||
|
|
||||||
|
4. Run the following sequence of commands to restart Boot2Docker with the new settings.
|
||||||
|
|
||||||
|
$ boot2docker poweroff
|
||||||
|
$ boot2docker destroy
|
||||||
|
$ boot2docker init
|
||||||
|
$ boot2docker up
|
||||||
|
|
||||||
|
## Solution 2: Increase the size of boot2docker volume
|
||||||
|
|
||||||
|
This solution increases the volume size by first cloning it, then resizing it
|
||||||
|
using a disk partitioning tool. We recommend
|
||||||
|
[GParted](http://gparted.sourceforge.net/download.php/index.php). The tool comes
|
||||||
|
as a bootable ISO, is a free download, and works well with VirtualBox.
|
||||||
|
|
||||||
|
1. Stop Boot2Docker
|
||||||
|
|
||||||
Issue the command to stop the Boot2Docker VM on the command line:
|
Issue the command to stop the Boot2Docker VM on the command line:
|
||||||
|
|
||||||
$ boot2docker stop
|
$ boot2docker stop
|
||||||
|
|
||||||
## 2. Clone the VMDK image to a VDI image
|
2. Clone the VMDK image to a VDI image
|
||||||
|
|
||||||
Boot2Docker ships with a VMDK image, which can’t be resized by VirtualBox’s
|
Boot2Docker ships with a VMDK image, which can't be resized by VirtualBox's
|
||||||
native tools. We will instead create a VDI volume and clone the VMDK volume to
|
native tools. We will instead create a VDI volume and clone the VMDK volume to
|
||||||
it.
|
it.
|
||||||
|
|
||||||
Using the command line VirtualBox tools, clone the VMDK image to a VDI image:
|
3. Using the command line VirtualBox tools, clone the VMDK image to a VDI image:
|
||||||
|
|
||||||
$ vboxmanage clonehd /full/path/to/boot2docker-hd.vmdk /full/path/to/<newVDIimage>.vdi --format VDI --variant Standard
|
$ vboxmanage clonehd /full/path/to/boot2docker-hd.vmdk /full/path/to/<newVDIimage>.vdi --format VDI --variant Standard
|
||||||
|
|
||||||
## 3. Resize the VDI volume
|
4. Resize the VDI volume
|
||||||
|
|
||||||
Choose a size that will be appropriate for your needs. If you’re spinning up a
|
Choose a size that will be appropriate for your needs. If you're spinning up a
|
||||||
lot of containers, or your containers are particularly large, larger will be
|
lot of containers, or your containers are particularly large, larger will be
|
||||||
better:
|
better:
|
||||||
|
|
||||||
$ vboxmanage modifyhd /full/path/to/<newVDIimage>.vdi --resize <size in MB>
|
$ vboxmanage modifyhd /full/path/to/<newVDIimage>.vdi --resize <size in MB>
|
||||||
|
|
||||||
## 4. Download a disk partitioning tool ISO
|
5. Download a disk partitioning tool ISO
|
||||||
|
|
||||||
To resize the volume, we'll use [GParted](http://gparted.sourceforge.net/download.php/).
|
To resize the volume, we'll use [GParted](http://gparted.sourceforge.net/download.php/).
|
||||||
Once you've downloaded the tool, add the ISO to the Boot2Docker VM IDE bus.
|
Once you've downloaded the tool, add the ISO to the Boot2Docker VM IDE bus.
|
||||||
|
@ -63,21 +118,21 @@ You might need to create the bus before you can add the ISO.
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
## 5. Add the new VDI image
|
6. Add the new VDI image
|
||||||
|
|
||||||
In the settings for the Boot2Docker image in VirtualBox, remove the VMDK image
|
In the settings for the Boot2Docker image in VirtualBox, remove the VMDK image
|
||||||
from the SATA controller and add the VDI image.
|
from the SATA controller and add the VDI image.
|
||||||
|
|
||||||
<img src="/articles/b2d_volume_images/add_volume.png">
|
<img src="/articles/b2d_volume_images/add_volume.png">
|
||||||
|
|
||||||
## 6. Verify the boot order
|
7. Verify the boot order
|
||||||
|
|
||||||
In the **System** settings for the Boot2Docker VM, make sure that **CD/DVD** is
|
In the **System** settings for the Boot2Docker VM, make sure that **CD/DVD** is
|
||||||
at the top of the **Boot Order** list.
|
at the top of the **Boot Order** list.
|
||||||
|
|
||||||
<img src="/articles/b2d_volume_images/boot_order.png">
|
<img src="/articles/b2d_volume_images/boot_order.png">
|
||||||
|
|
||||||
## 7. Boot to the disk partitioning ISO
|
8. Boot to the disk partitioning ISO
|
||||||
|
|
||||||
Manually start the Boot2Docker VM in VirtualBox, and the disk partitioning ISO
|
Manually start the Boot2Docker VM in VirtualBox, and the disk partitioning ISO
|
||||||
should start up. Using GParted, choose the **GParted Live (default settings)**
|
should start up. Using GParted, choose the **GParted Live (default settings)**
|
||||||
|
@ -87,15 +142,18 @@ on the VDI and choose **Resize/Move**.
|
||||||
|
|
||||||
<img src="/articles/b2d_volume_images/gparted.png">
|
<img src="/articles/b2d_volume_images/gparted.png">
|
||||||
|
|
||||||
Drag the slider representing the volume to the maximum available size, click
|
9. Drag the slider representing the volume to the maximum available size.
|
||||||
**Resize/Move**, and then **Apply**.
|
|
||||||
|
10. Click **Resize/Move** followed by **Apply**.
|
||||||
|
|
||||||
<img src="/articles/b2d_volume_images/gparted2.png">
|
<img src="/articles/b2d_volume_images/gparted2.png">
|
||||||
|
|
||||||
Quit GParted and shut down the VM. Remove the GParted ISO from the IDE controller
|
11. Quit GParted and shut down the VM.
|
||||||
for the Boot2Docker VM in VirtualBox.
|
|
||||||
|
|
||||||
## 8. Start the Boot2Docker VM
|
12. Remove the GParted ISO from the IDE controller for the Boot2Docker VM in
|
||||||
|
VirtualBox.
|
||||||
|
|
||||||
|
13. Start the Boot2Docker VM
|
||||||
|
|
||||||
Fire up the Boot2Docker VM manually in VirtualBox. The VM should log in
|
Fire up the Boot2Docker VM manually in VirtualBox. The VM should log in
|
||||||
automatically, but if it doesn't, the credentials are `docker/tcuser`. Using
|
automatically, but if it doesn't, the credentials are `docker/tcuser`. Using
|
||||||
|
@ -103,5 +161,4 @@ the `df -h` command, verify that your changes took effect.
|
||||||
|
|
||||||
<img src="/articles/b2d_volume_images/verify.png">
|
<img src="/articles/b2d_volume_images/verify.png">
|
||||||
|
|
||||||
You’re done!
|
You're done!
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue