Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.

Commit 8b1aa1e

Browse files
committed
Fixed sample config file
We do not curretly support trailing comments yet, so all comment lines must be on their own.
1 parent ca3d4e3 commit 8b1aa1e

1 file changed

Lines changed: 45 additions & 16 deletions

File tree

README.md

Lines changed: 45 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -84,21 +84,50 @@ The `boot2docker-cli` binary reads configuration from `$BOOT2DOCKER_PROFILE`, or
8484
if not found, from `$BOOT2DOCKER_DIR/profile`. Currently you can configure
8585
the 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

103132
Environment variables of the form `$ENVVAR` in the profile will be expanded,
104133
even on Windows.
@@ -121,4 +150,4 @@ Guide](https://code.google.com/p/go-wiki/wiki/Style). In particular, you MUST
121150
run `gofmt` before committing. We suggest you run `go tool vet -all .` as well.
122151

123152
Please rebase the upstream in your fork in order to keep the commit history
124-
tidy.
153+
tidy.

0 commit comments

Comments
 (0)