mirror of https://github.com/docker/cli.git
Add support for multiples runtimes
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
parent
d3b7a2779e
commit
090cf185cd
|
@ -78,6 +78,7 @@ Creates a new container.
|
||||||
--privileged Give extended privileges to this container
|
--privileged Give extended privileges to this container
|
||||||
--read-only Mount the container's root filesystem as read only
|
--read-only Mount the container's root filesystem as read only
|
||||||
--restart="no" Restart policy (no, on-failure[:max-retry], always, unless-stopped)
|
--restart="no" Restart policy (no, on-failure[:max-retry], always, unless-stopped)
|
||||||
|
--runtime="" Name of the runtime to be used for that container
|
||||||
--security-opt=[] Security options
|
--security-opt=[] Security options
|
||||||
--stop-signal="SIGTERM" Signal to stop a container
|
--stop-signal="SIGTERM" Signal to stop a container
|
||||||
--shm-size=[] Size of `/dev/shm`. The format is `<number><unit>`. `number` must be greater than `0`. Unit is optional and can be `b` (bytes), `k` (kilobytes), `m` (megabytes), or `g` (gigabytes). If you omit the unit, the system uses bytes. If you omit the size entirely, the system uses `64m`.
|
--shm-size=[] Size of `/dev/shm`. The format is `<number><unit>`. `number` must be greater than `0`. Unit is optional and can be `b` (bytes), `k` (kilobytes), `m` (megabytes), or `g` (gigabytes). If you omit the unit, the system uses bytes. If you omit the size entirely, the system uses `64m`.
|
||||||
|
|
|
@ -60,6 +60,7 @@ weight = -1
|
||||||
-p, --pidfile="/var/run/docker.pid" Path to use for daemon PID file
|
-p, --pidfile="/var/run/docker.pid" Path to use for daemon PID file
|
||||||
--raw-logs Full timestamps without ANSI coloring
|
--raw-logs Full timestamps without ANSI coloring
|
||||||
--registry-mirror=[] Preferred Docker registry mirror
|
--registry-mirror=[] Preferred Docker registry mirror
|
||||||
|
--add-runtime=[] Register an additional OCI compatible runtime
|
||||||
-s, --storage-driver="" Storage driver to use
|
-s, --storage-driver="" Storage driver to use
|
||||||
--selinux-enabled Enable selinux support
|
--selinux-enabled Enable selinux support
|
||||||
--storage-opt=[] Set storage driver options
|
--storage-opt=[] Set storage driver options
|
||||||
|
@ -572,6 +573,31 @@ The Docker daemon relies on a
|
||||||
(invoked via the `containerd` daemon) as its interface to the Linux
|
(invoked via the `containerd` daemon) as its interface to the Linux
|
||||||
kernel `namespaces`, `cgroups`, and `SELinux`.
|
kernel `namespaces`, `cgroups`, and `SELinux`.
|
||||||
|
|
||||||
|
Runtimes can be registered with the daemon either via the
|
||||||
|
configuration file or using the `--add-runtime` command line argument.
|
||||||
|
|
||||||
|
The following is an example adding 2 runtimes via the configuration:
|
||||||
|
```json
|
||||||
|
"default-runtime": "runc",
|
||||||
|
"runtimes": {
|
||||||
|
"runc": {
|
||||||
|
"path": "runc"
|
||||||
|
},
|
||||||
|
"custom": {
|
||||||
|
"path": "/usr/local/bin/my-runc-replacement",
|
||||||
|
"runtimeArgs": [
|
||||||
|
"--debug"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
This is the same example via the command line:
|
||||||
|
|
||||||
|
$ sudo dockerd --add-runtime runc=runc --add-runtime custom=/usr/local/bin/my-runc-replacement
|
||||||
|
|
||||||
|
**Note**: defining runtime arguments via the command line is not supported.
|
||||||
|
|
||||||
## Options for the runtime
|
## Options for the runtime
|
||||||
|
|
||||||
You can configure the runtime using options specified
|
You can configure the runtime using options specified
|
||||||
|
@ -1014,7 +1040,19 @@ This is a full example of the allowed configuration options in the file:
|
||||||
"raw-logs": false,
|
"raw-logs": false,
|
||||||
"registry-mirrors": [],
|
"registry-mirrors": [],
|
||||||
"insecure-registries": [],
|
"insecure-registries": [],
|
||||||
"disable-legacy-registry": false
|
"disable-legacy-registry": false,
|
||||||
|
"default-runtime": "runc",
|
||||||
|
"runtimes": {
|
||||||
|
"runc": {
|
||||||
|
"path": "runc"
|
||||||
|
},
|
||||||
|
"custom": {
|
||||||
|
"path": "/usr/local/bin/my-runc-replacement",
|
||||||
|
"runtimeArgs": [
|
||||||
|
"--debug"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1036,6 +1074,11 @@ The list of currently supported options that can be reconfigured is this:
|
||||||
- `labels`: it replaces the daemon labels with a new set of labels.
|
- `labels`: it replaces the daemon labels with a new set of labels.
|
||||||
- `max-concurrent-downloads`: it updates the max concurrent downloads for each pull.
|
- `max-concurrent-downloads`: it updates the max concurrent downloads for each pull.
|
||||||
- `max-concurrent-uploads`: it updates the max concurrent uploads for each push.
|
- `max-concurrent-uploads`: it updates the max concurrent uploads for each push.
|
||||||
|
- `default-runtime`: it updates the runtime to be used if not is
|
||||||
|
specified at container creation. It defaults to "default" which is
|
||||||
|
the runtime shipped with the official docker packages.
|
||||||
|
- `runtimes`: it updates the list of available OCI runtimes that can
|
||||||
|
be used to run containers
|
||||||
|
|
||||||
Updating and reloading the cluster configurations such as `--cluster-store`,
|
Updating and reloading the cluster configurations such as `--cluster-store`,
|
||||||
`--cluster-advertise` and `--cluster-store-opts` will take effect only if
|
`--cluster-advertise` and `--cluster-store-opts` will take effect only if
|
||||||
|
|
|
@ -89,6 +89,7 @@ parent = "smn_cli"
|
||||||
--read-only Mount the container's root filesystem as read only
|
--read-only Mount the container's root filesystem as read only
|
||||||
--restart="no" Restart policy (no, on-failure[:max-retry], always, unless-stopped)
|
--restart="no" Restart policy (no, on-failure[:max-retry], always, unless-stopped)
|
||||||
--rm Automatically remove the container when it exits
|
--rm Automatically remove the container when it exits
|
||||||
|
--runtime="" Name of the runtime to be used for that container
|
||||||
--shm-size=[] Size of `/dev/shm`. The format is `<number><unit>`. `number` must be greater than `0`. Unit is optional and can be `b` (bytes), `k` (kilobytes), `m` (megabytes), or `g` (gigabytes). If you omit the unit, the system uses bytes. If you omit the size entirely, the system uses `64m`.
|
--shm-size=[] Size of `/dev/shm`. The format is `<number><unit>`. `number` must be greater than `0`. Unit is optional and can be `b` (bytes), `k` (kilobytes), `m` (megabytes), or `g` (gigabytes). If you omit the unit, the system uses bytes. If you omit the size entirely, the system uses `64m`.
|
||||||
--security-opt=[] Security Options
|
--security-opt=[] Security Options
|
||||||
--sig-proxy=true Proxy received signals to the process
|
--sig-proxy=true Proxy received signals to the process
|
||||||
|
|
Loading…
Reference in New Issue