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
|`default`| Use the value specified by the Docker daemon's `--exec-opt` . If the `daemon` does not specify an isolation technology, Microsoft Windows uses `process` as its default value. |
167
+
| `default` | Use the value specified by the Docker daemon's `--exec-opt` . If the `daemon` does not specify an isolation technology, Microsoft Windows uses `process` as its default value if the
168
+
daemon is running on Windows server, or `hyperv` if running on Windows client. |
Copy file name to clipboardExpand all lines: man/docker-create.1.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,9 @@ two memory nodes.
197
197
'host': use the host shared memory,semaphores and message queues inside the container. Note: the host mode gives the container full access to local shared memory and is therefore considered insecure.
198
198
199
199
**--isolation**="*default*"
200
-
Isolation specifies the type of isolation technology used by containers.
200
+
Isolation specifies the type of isolation technology used by containers. Note
201
+
that the default on Windows server is `process`, and the default on Windows client
202
+
is `hyperv`. Linux only supports `default`.
201
203
202
204
**--kernel-memory**=""
203
205
Kernel memory limit (format: `<number>[<unit>]`, where unit = b, k, m or g)
Copy file name to clipboardExpand all lines: man/docker-run.1.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -297,7 +297,9 @@ redirection on the host system.
297
297
'host': use the host shared memory,semaphores and message queues inside the container. Note: the host mode gives the container full access to local shared memory and is therefore considered insecure.
298
298
299
299
**--isolation**="*default*"
300
-
Isolation specifies the type of isolation technology used by containers.
300
+
Isolation specifies the type of isolation technology used by containers. Note
301
+
that the default on Windows server is `process`, and the default on Windows client
302
+
is `hyperv`. Linux only supports `default`.
301
303
302
304
**-l**, **--label**=[]
303
305
Set metadata on the container (e.g., --label com.example.key=value)
Copy file name to clipboardExpand all lines: man/dockerd.8.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ dockerd - Enable daemon mode
39
39
[**--ip-masq**[=*true*]]
40
40
[**--iptables**[=*true*]]
41
41
[**--ipv6**]
42
+
[**--isolation**[=*default*]]
42
43
[**-l**|**--log-level**[=*info*]]
43
44
[**--label**[=*[]*]]
44
45
[**--log-driver**[=*json-file*]]
@@ -183,6 +184,11 @@ unix://[/path/to/socket] to use.
183
184
**--ipv6**=*true*|*false*
184
185
Enable IPv6 support. Default is false. Docker will create an IPv6-enabled bridge with address fe80::1 which will allow you to create IPv6-enabled containers. Use together with `--fixed-cidr-v6` to provide globally routable IPv6 addresses. IPv6 forwarding will be enabled if not used with `--ip-forward=false`. This may collide with your host's current IPv6 settings. For more information please consult the documentation about "Advanced Networking - IPv6".
185
186
187
+
**--isolation**="*default*"
188
+
Isolation specifies the type of isolation technology used by containers. Note
189
+
that the default on Windows server is `process`, and the default on Windows client
0 commit comments