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

Description
This is on Win 8.1.
The error is:
Boot2Docker init
error in run: Failed to initialize machine "boot2docker-vm": strconv.ParseUint:
parsing "128": value out of range
The output that needs to be parsed includes:
IPV6NetworkMaskPrefixLength: 128
That value is then parsed by this code:
|
l, err := strconv.ParseUint(val, 10, 7) |
strconv.ParseUint(val, 10, 7) will fail when val is 128.
bit size should be increased to 8.