mirror of https://github.com/docker/cli.git
Add docs for `--exec-opt` and setting `native.cgroupdriver`.
update man pages. update bash completion. Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle) Docker-DCO-1.1-Signed-off-by: Jessie Frazelle <jess@docker.com> (github: jfrazelle)
This commit is contained in:
parent
63193b17b1
commit
734430c44c
|
@ -1151,6 +1151,7 @@ _docker() {
|
|||
--dns
|
||||
--dns-search
|
||||
--exec-driver -e
|
||||
--exec-opt
|
||||
--fixed-cidr
|
||||
--fixed-cidr-v6
|
||||
--graph -g
|
||||
|
|
|
@ -51,6 +51,7 @@ complete -c docker -f -n '__fish_docker_no_subcommand' -s d -l daemon -d 'Enable
|
|||
complete -c docker -f -n '__fish_docker_no_subcommand' -l dns -d 'Force Docker to use specific DNS servers'
|
||||
complete -c docker -f -n '__fish_docker_no_subcommand' -l dns-search -d 'Force Docker to use specific DNS search domains'
|
||||
complete -c docker -f -n '__fish_docker_no_subcommand' -s e -l exec-driver -d 'Force the Docker runtime to use a specific exec driver'
|
||||
complete -c docker -f -n '__fish_docker_no_subcommand' -l exec-opt -d 'Set exec driver options'
|
||||
complete -c docker -f -n '__fish_docker_no_subcommand' -l fixed-cidr -d 'IPv4 subnet for fixed IPs (e.g. 10.20.0.0/16)'
|
||||
complete -c docker -f -n '__fish_docker_no_subcommand' -l fixed-cidr-v6 -d 'IPv6 subnet for fixed IPs (e.g.: 2001:a02b/48)'
|
||||
complete -c docker -f -n '__fish_docker_no_subcommand' -s G -l group -d 'Group to assign the unix socket specified by -H when running in daemon mode'
|
||||
|
|
|
@ -452,6 +452,27 @@ https://linuxcontainers.org/) via the `lxc` execution driver, however, this is
|
|||
not where the primary development of new functionality is taking place.
|
||||
Add `-e lxc` to the daemon flags to use the `lxc` execution driver.
|
||||
|
||||
#### Exec driver options
|
||||
|
||||
Particular exec-driver can be configured with options specified with
|
||||
`--exec-opt` flags. The only driver accepting options is `native`
|
||||
(libcontainer) as of now. All its options are prefixed with `native`.
|
||||
|
||||
Currently supported options are:
|
||||
|
||||
* `native.cgroupdriver`
|
||||
|
||||
Specifies the management of the container's cgroups. As of now the only
|
||||
viable options are `cgroupfs` and `systemd`. The option will always
|
||||
fallback to `cgroupfs`. By default, if no option is specified, the
|
||||
execdriver will try `systemd` and fallback to `cgroupfs`. Same applies if
|
||||
`systemd` is passed as the `cgroupdriver` but is not capable of being used.
|
||||
|
||||
Example use:
|
||||
|
||||
$ sudo docker -d --exec-opt native.cgroupdriver=cgroupfs
|
||||
|
||||
|
||||
|
||||
### Daemon DNS options
|
||||
|
||||
|
|
Loading…
Reference in New Issue