boot2docker-cli

command module
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 20, 2014 License: Apache-2.0 Imports: 19 Imported by: 0

README

boot2docker command line management tool

This tool downloads the boot2docker ISO image, creates a VirtualBox virtual machine, sets up two networks for that virtual machine (one NAT to allow the VM and containers to access the internet, the other host-only to allow container port mapping to work securely), and then provides the user a simple way to login via SSH.

On Windows, MSYS SSH provides a first class way to connect to the boot2docker VM using boot2docker.exe ssh.

Note: Docker now has an IANA registered IP Port: 2375 , so the use of port 4243 is deprecated. This also means that new Boot2Docker ISO releases and management tool are not compatible.

Installation

Official Installers

Signed installers are available for Mac OS X and Windows.

Refer to the installation instructions for Windows and Mac OS X.

Manual Installation
Pre-compiled binaries

You can dowload binary releases at https://github.com/boot2docker/boot2docker-cli/releases

Install from source

You need to have Go compiler installed, and $GOPATH properly setup. Then run

go get github.com/boot2docker/boot2docker-cli

The binary will be available at $GOPATH/bin/boot2docker-cli. However the binary built this way will have missing version information when you run

$ boot2docker version

You can solve the issue by using make goinstall

cd $GOPATH/src/github.com/boot2docker/boot2docker-cli
make goinstall
Cross compiling

You can cross compile to OS X, Windows, and Linux. For that you need to first make your Go compiler ready for cross compiling to the target platforms.

We provide a Makefile to make the process a bit easier.

make darwin     # build for OS X/amd64
make linux      # build for Linux/amd64
make windows    # build for Windows/amd64
make all        # build for all three above
make clean      # clean up the built binaries

Built binaries will be available in the current directory.

Docker build

You can also build in a Docker container.

make dockerbuild

Built binaries will be available in the current directory.

Caveats

Currently the binary cross-compiled from Windows/Linux to OS X has a TLS issue, and as a result

$ boot2docker download

will fail. You need to do a native OS X build to avoid this problem.

Usage

To initialize a new boot2docker VM, run

$ boot2docker init

Then you can start the VM by

$ boot2docker up

To stop the VM, run

$ boot2docker down

And finally if you don't need the VM anymore, run

$ boot2docker delete

to remove it completely.

You can also run commands on the remote boot2docker virtual machine:

$ boot2docker ssh ip addr show eth1 |sed -nEe 's/^[ \t]*inet[ \t]*([0-9.]+)\/.*$/\1/p'
192.168.59.103
# this example is equivalent to the built in command:
$ boot2docker ip
192.168.59.103

In this case, the command tells you the host only interface IP address of the boot2docker vm, which you can then use to access ports you map from your containers.

Configuration

The boot2docker binary reads configuration from $BOOT2DOCKER_PROFILE if set, or $BOOT2DOCKER_DIR/profile or $HOME/.boot2docker/profile or (on Windows) $USERPROFILE/.boot2docker/profile. boot2docker config will tell you where it is looking for the file, and will also output the settings that are in use, so you can initialise a default file to customise using boot2docker config > /home/sven/.boot2docker/profile.

Currently you can configure the following options (undefined options take default values):

# Comments must be on their own lines; inline comments are not supported.

# path to VirtualBox management utility
VBM = "VBoxManage"

# path to SSH client utility
SSH = "ssh"
SSHGen = "ssh-keygen"
SSHKey = "/Users/sven/.ssh/id_boot2docker"

# name of boot2docker virtual machine
VM = "boot2docker-vm"

# path to boot2docker ISO image
ISO = "/Users/sven/.boot2docker/boot2docker.iso"

# VM disk image size in MB
DiskSize = 20000

# VM memory size in MB
Memory = 2048

# host port forwarding to port 22 in the VM
SSHPort = 2022

# host port forwarding to port 2375 in the VM
DockerPort = 2375

# host-only network host IP
HostIP = "192.168.59.3"

# host only network network mask
NetMask = [255, 255, 255, 0]

# host-only network DHCP server IP
DHCPIP = "192.168.59.99"

# host-only network DHCP server enabled
DHCPEnabled = true

# host-only network IP range lower bound
LowerIP = "192.168.59.103"

# host-only network IP range upper bound
UpperIP = "192.168.59.254"

You can override the configurations using matching command-line flags. Type boot2docker -h for more information. The configuration file options are the same as the command-line flags with long names.

Contribution

We are implementing the same process as Docker merge approval, so all commits need to be done via pull requests, and will need three or more LGTMs (Looks Good To Me) before merging.

To submit pull request, please make sure to follow the Go Style Guide. In particular, you MUST run gofmt before committing. We suggest you run go tool vet -all . as well.

Please rebase the upstream in your fork in order to keep the commit history tidy.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package virtualbox implements wrappers to interact with VirtualBox.
Package virtualbox implements wrappers to interact with VirtualBox.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL