Browse code

Add docs for `docker network create --attachable`

Signed-off-by: Harald Albers <github@albersweb.de>

Harald Albers authored on 2016/12/15 01:39:10
Showing 2 changed files
... ...
@@ -21,6 +21,7 @@ Usage:	docker network create [OPTIONS] NETWORK
21 21
 Create a network
22 22
 
23 23
 Options:
24
+      --attachable           Enable manual container attachment
24 25
       --aux-address value    Auxiliary IPv4 or IPv6 addresses used by Network
25 26
                              driver (default map[])
26 27
   -d, --driver string        Driver to manage the Network (default "bridge")
... ...
@@ -6,6 +6,7 @@ docker-network-create - create a new network
6 6
 
7 7
 # SYNOPSIS
8 8
 **docker network create**
9
+[**--attachable**]
9 10
 [**--aux-address**=*map[]*]
10 11
 [**-d**|**--driver**=*DRIVER*]
11 12
 [**--gateway**=*[]*]
... ...
@@ -143,6 +144,9 @@ to create an externally isolated `overlay` network, you can specify the
143 143
 `--internal` option.
144 144
 
145 145
 # OPTIONS
146
+**--attachable**
147
+  Enable manual container attachment
148
+
146 149
 **--aux-address**=map[]
147 150
   Auxiliary IPv4 or IPv6 addresses used by network driver
148 151