Steve Durrheimer
f7efcbbaa1
Add zsh completion for 'dockerd --init' and 'docker {create,run} --init'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
2017-06-02 00:10:49 +00:00
Anusha Ragunathan
e41d3a22ce
Add bash completion for newly added options to "docker plugin ls"
...
Signed-off-by: Anusha Ragunathan <anusha.ragunathan@docker.com >
2017-06-02 00:10:49 +00:00
Yong Tang
d36dd6541a
Add --format flag for docker plugin ls
...
This fix tries to address the enhancement discussed in 28735 to add
`--format` for the output of `docker plugin ls`.
This fix
1. Add `--format` and `--quiet` flags to `docker plugin ls`
2. Convert the current implementation to use `formatter`, consistent with
other docker list commands.
3. Add `pluginsFormat` for config.json.
Related docs has been updated.
Several unit tests have been added to cover the changes.
This fix is related to 28708 and 28735.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
2017-06-02 00:10:49 +00:00
Michael Friis
e65d4d2907
remove indent from .dockerignore example
...
Signed-off-by: Michael Friis <friism@gmail.com >
2017-06-02 00:10:49 +00:00
Victor Vieux
dd05de1e6a
Merge pull request #30329 from johndmulhausen/patch-2
...
Fixing formatting errors in Run refdoc
Signed-off-by: Misty Stanley-Jones <misty@docker.com >
2017-06-02 00:10:49 +00:00
Steve Durrheimer
ad214d7a79
Add zsh completion for 'docker swarm --availability'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
2017-06-02 00:10:49 +00:00
Steve Durrheimer
8cd8ceedf6
Add zsh completion for 'docker {container,image,network,system} prune --filter'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
2017-06-02 00:10:49 +00:00
Zhang Wei
b5758e62de
Fix some typos
...
Signed-off-by: Zhang Wei <zhangwei555@huawei.com >
2017-06-02 00:10:49 +00:00
Harald Albers
0e8ea8a2b6
Add bash completion for dockerd --init and docker run|create --init
...
Fixes #30263
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:49 +00:00
John Howard
8c24f5d5e7
Update run.md ENV docs
...
Signed-off-by: John Howard <jhoward@microsoft.com >
2017-06-02 00:10:49 +00:00
Yanqiang Miao
b6aba94144
Complete the options for 'docker plugin install'
...
Signed-off-by: Yanqiang Miao <miao.yanqiang@zte.com.cn >
2017-06-02 00:10:49 +00:00
Harald Albers
f58ef83a2c
Add bash completion for build --squash
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:49 +00:00
Harald Albers
347c066e0d
Add bash completion for container|image|network prune --filter until
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:49 +00:00
Harald Albers
cce9425a74
Fix treatment of DOCKER_HIDE_LEGACY_COMMANDS in bash completion
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:49 +00:00
Harald Albers
ad4e1a9c61
Add bash completion for plugin install --disable-content-trust
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:49 +00:00
Harald Albers
aa4b0f065b
Honour $DOCKER_HIDE_LEGACY_COMMANDS in bash completion
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:48 +00:00
Ian Campbell
4db608f186
Clarify cp documentation behaviour with trailing "/."
...
Issue #30082 demonstrated that their is possible confusion with the "/."
where the tailing "." can appear to be merely punctuation within the
document rather than a highly pertinent part of `SRC_PATH`.
Signed-off-by: Ian Campbell <ian.campbell@docker.com >
2017-06-02 00:10:48 +00:00
Harald Albers
3b59097abd
Add bash completion for swarm join --availability
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:48 +00:00
Yong Tang
4a16aa2ece
Allow swarm init with --availability=drain
...
This fix adds a new flag `--availability` to `swarm join`.
Related documentation has been updated.
An integration test has been added.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
2017-06-02 00:10:48 +00:00
Yong Tang
f4d26add25
Allow swarm join with --availability=drain
...
This fix tries to address the issue raised in 24596 where it was not
possible to join as manager only (`--availability=drain`).
This fix adds a new flag `--availability` to `swarm join`.
Related documentation has been updated.
An integration test has been added.
NOTE: Additional pull request for swarmkit and engine-api will
be created separately.
This fix fixes 24596.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
2017-06-02 00:10:48 +00:00
Tibor Vass
8c3f18ca6d
plugins: rename DeviceCreation to AllowAllDevices
...
Signed-off-by: Tibor Vass <tibor@docker.com >
2017-06-02 00:10:48 +00:00
Dong Chen
3988259bcb
add port PublishMode to service inspect --pretty output
...
Signed-off-by: Dong Chen <dongluo.chen@docker.com >
2017-06-02 00:10:48 +00:00
Victor Vieux
20954b356b
remove -f on secret create and unify usage with other commands
...
Signed-off-by: Victor Vieux <vieux@docker.com >
2017-06-02 00:10:48 +00:00
Yong Tang
fdd6879b68
Add --filter until=<timestamp> for docker container/image prune
...
This fix is a follow up for comment
https://github.com/docker/docker/pull/28535#issuecomment-263215225
This fix provides `--filter until=<timestamp>` for `docker container/image prune`.
This fix adds `--filter until=<timestamp>` to `docker container/image prune`
so that it is possible to specify a timestamp and prune those containers/images
that are earlier than the timestamp.
Related docs has been updated
Several integration tests have been added to cover changes.
This fix fixes #28497 .
This fix is related to #28535 .
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
2017-06-02 00:10:48 +00:00
ttronicum
915a5a3c57
explain since format and give examples
...
Signed-off-by: tronicum <tronicum@user.github.com >
2017-06-02 00:10:48 +00:00
allencloud
1f494501f2
fix volume ls filter driver
...
Signed-off-by: allencloud <allen.sun@daocloud.io >
2017-06-02 00:10:48 +00:00
yuexiao-wang
70d63dce63
Fix incorrect alias and URL
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
2017-06-02 00:10:48 +00:00
yuexiao-wang
6337d3724e
keep network option consistent between network connect and run
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
2017-06-02 00:10:48 +00:00
lixiaobing10051267
30f009076e
Provide correct command imformation and URL
...
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn >
2017-06-02 00:10:48 +00:00
Harald Albers
fbfe077b1e
Add bash completion for plugin names
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:48 +00:00
Yunxiang Huang
bd5bced8d1
Fix "zsh/_docker"
...
Signed-off-by: Yunxiang Huang <hyxqshk@vip.qq.com >
2017-06-02 00:10:48 +00:00
Victor Vieux
67da1ed340
small secret doc update
...
Signed-off-by: Victor Vieux <vieux@docker.com >
2017-06-02 00:10:48 +00:00
John Howard
36274c35d5
Tidy --isolation wording
...
Signed-off-by: John Howard <jhoward@microsoft.com >
2017-06-02 00:10:47 +00:00
allencloud
6c3e0ba560
support registry mirror config reload
...
Signed-off-by: allencloud <allen.sun@daocloud.io >
2017-06-02 00:10:47 +00:00
yuexiao-wang
6dcebccc46
Update docker daemon to dockerd
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
2017-06-02 00:10:47 +00:00
Victor Vieux
63aa05d3f7
replace no-remove by sample-volume-plugin in docs
...
Signed-off-by: Victor Vieux <vieux@docker.com >
2017-06-02 00:10:47 +00:00
Daniel Nephin
5bd015e2d9
Read long description from a file.
...
Signed-off-by: Daniel Nephin <dnephin@docker.com >
2017-06-02 00:10:47 +00:00
Harald Albers
ce569fd836
Support multiple services on bash completion for docker service ps
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:47 +00:00
allencloud
a004c15df0
update plugins in docs and correct things in index.md
...
Signed-off-by: allencloud <allen.sun@daocloud.io >
2017-06-02 00:10:47 +00:00
Yong Tang
0645bd841e
Support multiple service IDs on "docker service ps"
...
This fix tries to address issue raised in 25228 to support
multiple service IDs on `docker service ps`.
Multiple IDs are allowed with `docker service ps ...`, and
related documentation has been updated.
A test has been added to cover the changes.
This fix fixes 25228.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
2017-06-02 00:10:47 +00:00
yuexiao-wang
1471f8013b
Update reference document for secret and stack
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
2017-06-02 00:10:47 +00:00
Harald Albers
6c5145d074
Fix usage message of plugin inspect
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:47 +00:00
Harald Albers
0e0cb6498c
Add bash completion for plugin disable --force
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:47 +00:00
Harald Albers
70d8efd001
Fix bash completion for plugin enable|disable
...
`docker plugin enable` and `docker plugin disable` only
accept one plugin.
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:10:47 +00:00
Sebastiaan van Stijn
8d4ea9f2cf
document DOCKER_HIDE_LEGACY_COMMANDS env-var
...
The `DOCKER_HIDE_LEGACY_COMMANDS` environment
variable was added in a7c8bcac2ba60d6dd25a1157085d9245bed556ce
but not documented.
This adds the variable to the documentation.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2017-06-02 00:10:47 +00:00
Yanqiang Miao
7957741105
Complete the document content
...
Signed-off-by: Yanqiang Miao <miao.yanqiang@zte.com.cn >
update
Signed-off-by: Yanqiang Miao <miao.yanqiang@zte.com.cn >
2017-06-02 00:10:47 +00:00
lixiaobing10051267
aba799a996
update URL of plugins_graphdriver.md in experimental/README.md
...
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn >
2017-06-02 00:10:47 +00:00
Ovidio Mallo
b839363db9
Reference new DigitalOcean plugin ( Closes #29729 )
...
Signed-off-by: Ovidio Mallo <ovidio.mallo@gmail.com >
2017-06-02 00:10:47 +00:00
yuexiao-wang
6f6cd51db6
Update the field 'CONTAINER ID' for docker ps
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
2017-06-02 00:10:47 +00:00
zhenghenghuo
a724a5d8c9
fix some typos
...
Signed-off-by: zhenghenghuo <zhenghenghuo@zju.edu.cn >
try to pass test
Signed-off-by: zhenghenghuo <zhenghenghuo@zju.edu.cn >
try to pass the test
Signed-off-by: zhenghenghuo <zhenghenghuo@zju.edu.cn >
2017-06-02 00:10:46 +00:00