You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flag.StringVar(&config.BridgeIP, []string{"#bip", "-bip"}, "", "Use this CIDR notation address for the network bridge's IP, not compatible with -b")
56
57
flag.StringVar(&config.BridgeIface, []string{"b", "-bridge"}, "", "Attach containers to a pre-existing network bridge\nuse 'none' to disable container networking")
57
58
flag.StringVar(&config.FixedCIDR, []string{"-fixed-cidr"}, "", "IPv4 subnet for fixed IPs (ex: 10.20.0.0/16)\nthis subnet must be nested in the bridge subnet (which is defined by -b or --bip)")
59
+
opts.ListVar(&config.InsecureRegistries, []string{"-insecure-registry"}, "Make these registries use http")
Copy file name to clipboardExpand all lines: docs/sources/reference/commandline/cli.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,8 @@ expect an integer, and they can only be specified once.
70
70
-g, --graph="/var/lib/docker" Path to use as the root of the Docker runtime
71
71
-H, --host=[] The socket(s) to bind to in daemon mode or connect to in client mode, specified using one or more tcp://host:port, unix:///path/to/socket, fd://* or fd://socketfd.
72
72
--icc=true Enable inter-container communication
73
-
--ip=0.0.0.0 Default IP address to use when binding container ports
73
+
--insecure-registry=[] Make these registries use http
74
+
--ip=0.0.0.0 Default IP address to use when binding container ports
74
75
--ip-forward=true Enable net.ipv4.ip_forward
75
76
--ip-masq=true Enable IP masquerading for bridge's IP range
76
77
--iptables=true Enable Docker's addition of iptables rules
0 commit comments