mirror of https://github.com/docker/docs.git
1.1 KiB
1.1 KiB
datafolder | datafile | title |
---|---|---|
engine-cli | docker_container_create | docker container create |
{% include cli.md %}
Examples
Specify isolation technology for container (--isolation)
This option is useful in situations where you are running Docker containers on
Windows. The --isolation=<value>
option sets a container's isolation
technology. On Linux, the only supported is the default
option which uses
Linux namespaces. On Microsoft Windows, you can specify these values:
default
: Use the value specified by the Docker daemon's--exec-opt
. If thedaemon
does not specify an isolation technology, Microsoft Windows usesprocess
as its default value.process
: Namespace isolation only.hyperv
: Hyper-V hypervisor partition-based isolation.
Specifying the --isolation
flag without a value is the same as setting --isolation="default"
.