mirror of https://github.com/docker/docs.git
parent
3f8d2662de
commit
23e9e6f73f
|
|
@ -244,7 +244,7 @@ func (cloud GCECloud) CreateInstance(name string, zone string) (string, error) {
|
|||
NetworkInterfaces: []*compute.NetworkInterface{
|
||||
{
|
||||
AccessConfigs: []*compute.AccessConfig{
|
||||
&compute.AccessConfig{Type: "ONE_TO_ONE_NAT"},
|
||||
{Type: "ONE_TO_ONE_NAT"},
|
||||
},
|
||||
Network: prefix + "/global/networks/default",
|
||||
},
|
||||
|
|
|
|||
|
|
@ -17,8 +17,7 @@ func main() {
|
|||
app.Name = "swarmd"
|
||||
app.Usage = "Compose distributed systems from lightweight services"
|
||||
app.Version = "0.0.1"
|
||||
app.Flags = []cli.Flag{
|
||||
}
|
||||
app.Flags = []cli.Flag{}
|
||||
app.Action = cmdDaemon
|
||||
app.Run(os.Args)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue