Harald Albers
ebf1521740
Move bash completion logic to new subcommand: import
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: e8310f310d
Component: cli
2017-06-02 00:10:29 +00:00
Harald Albers
1986761a5c
Move bash completion logic to new subcommand: history
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 583bda0896
Component: cli
2017-06-02 00:10:29 +00:00
Harald Albers
4cf7607d8d
Move bash completion logic to new subcommand: build
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: bd3939dddd
Component: cli
2017-06-02 00:10:28 +00:00
Harald Albers
c84c2e463c
Add bash completion for new docker image command family
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 3ab25a8ccb
Component: cli
2017-06-02 00:10:28 +00:00
Erik St. Martin
5ef6f17a9d
Implementing support for --cpu-rt-period and --cpu-rt-runtime so that
...
containers may specify these cgroup values at runtime. This will allow
processes to change their priority to real-time within the container
when CONFIG_RT_GROUP_SCHED is enabled in the kernel. See #22380 .
Also added sanity checks for the new --cpu-rt-runtime and --cpu-rt-period
flags to ensure that that the kernel supports these features and that
runtime is not greater than period.
Daemon will support a --cpu-rt-runtime flag to initialize the parent
cgroup on startup, this prevents the administrator from alotting runtime
to docker after each restart.
There are additional checks that could be added but maybe too far? Check
parent cgroups to ensure values are <= parent, inspecting rtprio ulimit
and issuing a warning.
Signed-off-by: Erik St. Martin <alakriti@gmail.com >
Upstream-commit: 42ef78911e
Component: cli
2017-06-02 00:10:28 +00:00
Steve Durrheimer
fec713dbd4
Add zsh completion for 'dockerd --experimental'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: 85fb527cbf
Component: cli
2017-06-02 00:10:28 +00:00
Leo Gallucci
a6e7161261
Typo --ti and missing my_strace_docker_image
...
Signed-off-by: Leo Gallucci <leo.gallucci@zalando.de >
Upstream-commit: 74e0f7857b
Component: cli
2017-06-02 00:10:28 +00:00
sandyskies
8004b9853e
add --network option for docker build
...
Signed-off-by: sandyskies <chenmingjie0828@163.com >
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com >
Upstream-commit: b4f6b6d970
Component: cli
2017-06-02 00:10:28 +00:00
Akihiro Suda
5addbf284f
add docker network prune
...
`docker network prune` prunes unused networks, including overlay ones.
`docker system prune` also prunes unused networks.
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp >
Upstream-commit: 8f0be436cd
Component: cli
2017-06-02 00:10:28 +00:00
Steve Durrheimer
e9ac4c1692
Add zsh completion for 'dockerd --shutdown-timeout'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: 350b1a3f38
Component: cli
2017-06-02 00:10:28 +00:00
Steve Durrheimer
a13751fa90
Add zsh completion for 'docker {create,run} --stop-timeout'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: fa8f0cd060
Component: cli
2017-06-02 00:10:28 +00:00
Harald Albers
4b10ffabec
Add bash completion for dockerd --experimental
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 7414101f3c
Component: cli
2017-06-02 00:10:28 +00:00
Steve Durrheimer
4ccf8b5a72
Fix zsh completion for 'docker exec --env'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: add78ffc8a
Component: cli
2017-06-02 00:10:28 +00:00
Akihiro Suda
32d2c358e9
update docs/reference/commandline/network_inspect.md
...
The following sentences (introduced in v1.11 via #21160 ) were misleading for Swarm mode services (>= v1.12)
For networks backed by multi-host network driver, such as Overlay,
this command also shows the container endpoints in other hosts in the
cluster. These endpoints are represented as "ep-{endpoint-id}" in the output.
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp >
Upstream-commit: a91e31b2df
Component: cli
2017-06-02 00:10:28 +00:00
Yong Tang
5b01128cd3
Remove duplicate keys in labels of docker info
...
This fix tries to address the issue raised in 24392 where
labels with duplicate keys exist in `docker info`, which
contradicts with the specifications in the docs.
The reason for duplicate keys is that labels are stored as
slice of strings in the format of `A=B` (and the input/output).
This fix tries to address this issue by checking conflict
labels when daemon started, and remove duplicate labels (K-V).
The existing `/info` API has not been changed.
An additional integration test has been added to cover the
changes in this fix.
This fix fixes 24392.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
Upstream-commit: 7765e48aaa
Component: cli
2017-06-02 00:10:28 +00:00
Kenfe-Mickael Laventure
7aea692b20
Make experimental a runtime flag
...
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com >
Upstream-commit: 47b507e48a
Component: cli
2017-06-02 00:10:28 +00:00
yuexiao-wang
94ac28a2ac
Fix the incorrect links in the document about network and service
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
Upstream-commit: 4df7e0a9fa
Component: cli
2017-06-02 00:10:28 +00:00
yuexiao-wang
9585717058
Update the subtitle for stack ps
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
Upstream-commit: 78b56b5529
Component: cli
2017-06-02 00:10:28 +00:00
Harald Albers
106df2cc9f
Fix bash completion for docker exec --env
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 04b0779de4
Component: cli
2017-06-02 00:10:28 +00:00
Aaron Lehmann
1a07ed1f3c
Add force option to service update
...
Currently, there's no way to restart the tasks of a service without
making an actual change to the service. This leads to us giving awkward
workarounds as in
https://github.com/docker/docker.github.io/pull/178/files , where we tell
people to scale a service up and down to restore balance, or make
unnecessary changes to trigger a restart.
This change adds a --force option to "docker service update", which
forces the service to be updated even if no changes require that.
Since rolling update parameters are respected, the user can use
"docker service --force" to do a rolling restart. For example, the
following is supported:
docker service update --force --update-parallelism 2 \
--update-delay 5s myservice
Since the default value of --update-parallelism is 1, the default
behavior is to restart the service one task at a time.
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com >
Upstream-commit: 78c0d50c9f
Component: cli
2017-06-02 00:10:27 +00:00
yuexiao-wang
bdbf35292b
Modify the links for docker container commands
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
Upstream-commit: f18c41ee83
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
e596bf8b11
Move bash completion logic to new subcommand: wait
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 4f4c129973
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
8c7fd380c8
Move bash completion logic to new subcommand: update
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: d2ef5775b8
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
d41679a6b8
Move bash completion logic to new subcommand: unpause
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: b8d3d1e6ec
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
f8721d8330
Move bash completion logic to new subcommand: top
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 28cf2654e7
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
4eed057d60
Move bash completion logic to new subcommand: stop
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 620d0051c8
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
a6e576bd3f
Move bash completion logic to new subcommand: stats
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 04886bca2f
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
4482a5552b
Move bash completion logic to new subcommand: start
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: f58b6746d7
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
ed642954ab
Move bash completion logic to new subcommand: run
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 05656756e6
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
89b043e80e
Move bash completion logic to new subcommand: rm
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 39880d7731
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
91e9997531
Move bash completion logic to new subcommand: restart
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 2a9e70cf34
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
20eb486881
Move bash completion logic to new subcommand: port
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: f533df0821
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
aa3a48c359
Move bash completion logic to new subcommand: port
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 120b57a61c
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
7f9ae43944
Move bash completion logic to new subcommand: pause
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: b659865f57
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
9e5581fa01
Move bash completion logic to new subcommand: ps
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: adaa718195
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
09cd45cad5
Move bash completion logic to new subcommand: logs
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: bd996a11a1
Component: cli
2017-06-02 00:10:27 +00:00
Harald Albers
d0a00b93a7
Move bash completion logic to new subcommand: kill
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 13fde2b8c5
Component: cli
2017-06-02 00:10:26 +00:00
Harald Albers
6356dbb5b9
Move bash completion logic to new subcommand: inspect
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: c2c341f42b
Component: cli
2017-06-02 00:10:26 +00:00
Harald Albers
f7455ef6f1
Move bash completion logic to new subcommand: diff
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 4db49a11a5
Component: cli
2017-06-02 00:10:26 +00:00
Harald Albers
f49daf60b9
Move bash completion logic to new subcommand: exec
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: f560199333
Component: cli
2017-06-02 00:10:26 +00:00
Harald Albers
473ca5a103
Move bash completion logic to new subcommand: diff
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: eac71844f4
Component: cli
2017-06-02 00:10:26 +00:00
Harald Albers
bdbfcc0adf
Move bash completion logic to new subcommand: create
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 7db1e8272b
Component: cli
2017-06-02 00:10:26 +00:00
Harald Albers
67d0c00baa
Move bash completion logic to new subcommand: cp
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 0ef51632ec
Component: cli
2017-06-02 00:10:26 +00:00
Harald Albers
7a7ec39ca9
Move bash completion logic to new subcommand: commit
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: e2678f21d9
Component: cli
2017-06-02 00:10:26 +00:00
Harald Albers
708d76f1d0
Move bash completion logic to new subcommand: attach
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: d5cdbdc734
Component: cli
2017-06-02 00:10:26 +00:00
Harald Albers
68731cf24c
Add bash completion for docker container
...
At this point, we just delegate to the existing completions.
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: f857f420aa
Component: cli
2017-06-02 00:10:26 +00:00
lixiaobing10051267
a1672539b7
fix wrong location for network related doc files
...
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn >
Upstream-commit: 4865a342fb
Component: cli
2017-06-02 00:10:26 +00:00
Kenfe-Mickael Laventure
92e2ca3e12
Add Networks placeholder to ps --format
...
Passing {{.Networks}} to the format parameter will prompt ps to
display all the networks the container is connected to.
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com >
Upstream-commit: a7124389ed
Component: cli
2017-06-02 00:10:26 +00:00
Misty Stanley-Jones
e01ded192e
Rewrites to Developing Plugins topic
...
Signed-off-by: Misty Stanley-Jones <misty@docker.com >
Upstream-commit: 7ec82562ce
Component: cli
2017-06-02 00:10:26 +00:00
Misty Stanley-Jones
118bce70c4
Sync docker/docker refs with files mistakenly edited in docker.github.io repo
...
Signed-off-by: Misty Stanley-Jones <misty@docker.com >
Upstream-commit: 7f36c3a1a0
Component: cli
2017-06-02 00:10:26 +00:00