@@ -84,21 +84,50 @@ The `boot2docker-cli` binary reads configuration from `$BOOT2DOCKER_PROFILE`, or
8484if not found, from ` $BOOT2DOCKER_DIR/profile ` . Currently you can configure
8585the following options (undefined options take default values):
8686
87- vbm=VBoxManage # path to VirtualBox management utility
88- ssh=ssh # path to SSH client utility
89- vm=boot2docker-vm # name of boot2docker virtual machine
90- dir=$HOME/.boot2docker # path to boot2docker config directory
91- iso=$BOOT2DOCKER_DIR/boot2docker.iso # path to boot2docker ISO image
92- disksize=20000 # VM disk image size in MB
93- memory=1024 # VM memory size in MB
94- sshport=2022 # host port forwarding to port 22 in the VM
95- dockerport=4243 # host port forwarding to port 4243 in the VM
96- hostip=192.168.59.3 # host-only network host IP
97- netmask=255.255.255.0 # host only network network mask
98- dhcpip=192.168.59.99 # host-only network DHCP server IP
99- dhcp=true # host-only network DHCP server enabled
100- lowerip=192.168.59.103 # host-only network IP range lower bound
101- upperip=192.168.59.254 # host-only network IP range upper bound
87+ # path to VirtualBox management utility
88+ vbm=VBoxManage
89+
90+ # path to SSH client utility
91+ ssh=ssh
92+
93+ # name of boot2docker virtual machine
94+ vm=boot2docker-vm
95+
96+ # path to boot2docker config directory
97+ dir=$HOME/.boot2docker
98+
99+ # path to boot2docker ISO image
100+ iso=$BOOT2DOCKER_DIR/boot2docker.iso
101+
102+ # VM disk image size in MB
103+ disksize=20000
104+
105+ # VM memory size in MB
106+ memory=1024
107+
108+ # host port forwarding to port 22 in the VM
109+ sshport=2022
110+
111+ # host port forwarding to port 4243 in the VM
112+ dockerport=4243
113+
114+ # host-only network host IP
115+ hostip=192.168.59.3
116+
117+ # host only network network mask
118+ netmask=255.255.255.0
119+
120+ # host-only network DHCP server IP
121+ dhcpip=192.168.59.99
122+
123+ # host-only network DHCP server enabled
124+ dhcp=true
125+
126+ # host-only network IP range lower bound
127+ lowerip=192.168.59.103
128+
129+ # host-only network IP range upper bound
130+ upperip=192.168.59.254
102131
103132Environment variables of the form ` $ENVVAR ` in the profile will be expanded,
104133even on Windows.
@@ -121,4 +150,4 @@ Guide](https://code.google.com/p/go-wiki/wiki/Style). In particular, you MUST
121150run ` gofmt ` before committing. We suggest you run ` go tool vet -all . ` as well.
122151
123152Please rebase the upstream in your fork in order to keep the commit history
124- tidy.
153+ tidy.
0 commit comments