mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
set containers comm to true by default
This commit is contained in:
parent
ee81405567
commit
f7c40a87f3
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ func main() {
|
||||||
flag.Var(&flHosts, "H", "tcp://host:port to bind/connect to or unix://path/to/socket to use")
|
flag.Var(&flHosts, "H", "tcp://host:port to bind/connect to or unix://path/to/socket to use")
|
||||||
flEnableIptables := flag.Bool("iptables", true, "Disable iptables within docker")
|
flEnableIptables := flag.Bool("iptables", true, "Disable iptables within docker")
|
||||||
flDefaultIp := flag.String("ip", "0.0.0.0", "Default ip address to use when binding a containers ports")
|
flDefaultIp := flag.String("ip", "0.0.0.0", "Default ip address to use when binding a containers ports")
|
||||||
flInterContainerComm := flag.Bool("enable-container-comm", false, "Enable inter-container communication")
|
flInterContainerComm := flag.Bool("icc", true, "Enable inter-container communication")
|
||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue