@@ -84,50 +84,54 @@ 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- # path to VirtualBox management utility
88- vbm=VBoxManage
87+ ``` ini
88+ # Comments must be on their own lines; inline comments are not supported.
8989
90- # path to SSH client utility
91- ssh=ssh
90+ # path to VirtualBox management utility
91+ vbm =VBoxManage
9292
93- # name of boot2docker virtual machine
94- vm=boot2docker-vm
93+ # path to SSH client utility
94+ ssh =ssh
9595
96- # path to boot2docker config directory
97- dir=$HOME/. boot2docker
96+ # name of boot2docker virtual machine
97+ vm = boot2docker-vm
9898
99- # path to boot2docker ISO image
100- iso=$BOOT2DOCKER_DIR/boot2docker.iso
99+ # path to boot2docker config directory
100+ dir =$HOME/.boot2docker
101101
102- # VM disk image size in MB
103- disksize=20000
102+ # path to boot2docker ISO image
103+ iso =$BOOT2DOCKER_DIR/boot2docker.iso
104104
105- # VM memory size in MB
106- memory=1024
105+ # VM disk image size in MB
106+ disksize =20000
107107
108- # host port forwarding to port 22 in the VM
109- sshport=2022
108+ # VM memory size in MB
109+ memory =1024
110110
111- # host port forwarding to port 4243 in the VM
112- dockerport=4243
111+ # host port forwarding to port 22 in the VM
112+ sshport =2022
113113
114- # host-only network host IP
115- hostip=192.168.59.3
114+ # host port forwarding to port 4243 in the VM
115+ dockerport =4243
116116
117- # host only network network mask
118- netmask=255.255.255.0
117+ # host- only network host IP
118+ hostip =192.168.59.3
119119
120- # host- only network DHCP server IP
121- dhcpip=192.168.59.99
120+ # host only network network mask
121+ netmask =255.255.255.0
122122
123- # host-only network DHCP server enabled
124- dhcp=true
123+ # host-only network DHCP server IP
124+ dhcpip =192.168.59.99
125125
126- # host-only network IP range lower bound
127- lowerip=192.168.59.103
126+ # host-only network DHCP server enabled
127+ dhcp =true
128128
129- # host-only network IP range upper bound
130- upperip=192.168.59.254
129+ # host-only network IP range lower bound
130+ lowerip =192.168.59.103
131+
132+ # host-only network IP range upper bound
133+ upperip =192.168.59.254
134+ ```
131135
132136Environment variables of the form ` $ENVVAR ` in the profile will be expanded,
133137even on Windows.
0 commit comments