Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
c345dcb
Factored out VirtaulBox details into another package
riobard Mar 15, 2014
b4e268a
Fixed flag usage cases.
riobard Mar 15, 2014
cf362fa
Fixed global flags
riobard Mar 15, 2014
c51ca36
Assorted fixes per code review
riobard Mar 15, 2014
b4c2a49
Waiting for VM to stop is handled by the go-virtualbox package
riobard Mar 15, 2014
cd92a07
Use NIC network and hardware constants
riobard Mar 15, 2014
46c16e7
Print command executed in verbose mode
riobard Mar 15, 2014
a028ed6
Simplified profile parsing
riobard Mar 15, 2014
7911865
Fixed profile example in README.
riobard Mar 15, 2014
922dd7b
Fixed default value for iso and dir flags.
riobard Mar 15, 2014
1640ee1
Prefer shorter names.
riobard Mar 15, 2014
0f88388
Use forked pflag package with more data types
riobard Mar 16, 2014
7eb5b84
Used forked pflag package.
riobard Mar 16, 2014
f0d938f
Fixed 3rd-party import url
riobard Mar 16, 2014
68e16cb
Improved PFRule data types
riobard Mar 16, 2014
2209756
Fixed: repetively connect to SSH port at interval
riobard Mar 16, 2014
0ce19b5
Moved in the code from package `go-virtualbox`
riobard Mar 17, 2014
3499c18
Fixed import URL
riobard Mar 17, 2014
cecbcec
Use drive type and storage controller chipset constants
riobard Mar 17, 2014
b425b63
Switch to the updated original pflag package
riobard Mar 18, 2014
2c0117e
Improved error reporting when parsing profile
riobard Mar 18, 2014
cdf805c
Removed unnecessary parentheses
riobard Mar 22, 2014
d035569
Changed Verbose and VBM from pointers to values
riobard Mar 22, 2014
0ff049a
Prefer map literal unless explict capacity is required.
riobard Mar 22, 2014
a9dfb90
Assorted fixes from code review.
riobard Mar 22, 2014
0b64360
Dedicated FlagSet to parse profile and flags.
riobard Mar 22, 2014
c5f22c2
Assorted fixes for code review
riobard Mar 22, 2014
eb328fe
vbmOut/vbmOutErr return string instead of []byte
riobard Mar 22, 2014
51f292b
Fixed const declarations.
riobard Mar 22, 2014
d819615
Code review fixes
riobard Mar 23, 2014
acfe8f1
Minor fixes.
riobard Mar 23, 2014
00f480e
Removed useless comments.
riobard Mar 23, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,16 @@ the following options (undefined options take default values):
hostip=192.168.59.3 # host-only network host IP
netmask=255.255.255.0 # host only network network mask
dhcpip=192.168.59.99 # host-only network DHCP server IP
dhcp=Yes # host-only network DHCP server enabled
dhcp=true # host-only network DHCP server enabled
lowerip=192.168.59.103 # host-only network IP range lower bound
upperip=192.168.59.254 # host-only network IP range upper bound

Environment variables of the form `$ENVVAR` in the profile will be expanded,
even on Windows.

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



Expand Down
Loading