f439e07413
Improve bash completion for create|run --stop-signal
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: fa5297b853
Component: cli
2017-06-02 00:10:57 +00:00
326047d6b9
Add bash completion for service create|update --stop-signal
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: f6f45c14ec
Component: cli
2017-06-02 00:10:57 +00:00
15aa8d05a4
Fix typo in run.md documentation
...
Signed-off-by: John Laswell <john.n.laswell@gmail.com >
Upstream-commit: beacad8f6c
Component: cli
2017-06-02 00:10:57 +00:00
710021bc2f
Update vlan-networks.md
...
Some small changes to get the examples so that they run without error for me.
Improve consistency of presentation of the examples.
Fix some typos
Signed-off-by: kevinfeyrer <kevin.feyrer@btinternet.com >
Update vlan-networks.md
Restore "ip" accidentally removed
Signed-off-by: kevinfeyrer <kevin.feyrer@btinternet.com >
Update vlan-networks.md
Change prompt from container "$$" to host "$"
Signed-off-by: kevinfeyrer <kevin.feyrer@btinternet.com >
Update vlan-networks.md
Some changes suggested by cpuguy83 and thaJeztah
Signed-off-by: kevinfeyrer <kevin.feyrer@btinternet.com >
Upstream-commit: dd34522fa8
Component: cli
2017-06-02 00:10:57 +00:00
bab7965433
Fix description of docker run|create --stop-signal in help message
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 2fcb361c55
Component: cli
2017-06-02 00:10:57 +00:00
985040a0a9
added listing for Nimble Storage's volume plugin
...
Signed-off-by: Keith Hudgins <greenman@greenman.org >
updated nimble plugin url
Upstream-commit: 01468292d6
Component: cli
2017-06-02 00:10:57 +00:00
2a91e4f93d
Incorporated feedback from review
...
Signed-off-by: Boris Pruessmann <boris@pruessmann.org >
Upstream-commit: 6f4f45a134
Component: cli
2017-06-02 00:10:57 +00:00
e6b3880a3d
Improved aarch64 build
...
- Added 'golint', 'yamllint', and 'swagger'
- Fixed man/Dockerfile.aarch64 by bootstrapping Go 1.7.5
Signed-off-by: Boris Pruessmann <boris@pruessmann.org >
Upstream-commit: 39b2f9dd8f
Component: cli
2017-06-02 00:10:57 +00:00
d740c90562
Add support for command aliases to bash completion of docker volume
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 77cdc06233
Component: cli
2017-06-02 00:10:57 +00:00
eeef5fa0fb
Improve bash completion for service create|update --update-failure-action
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 0f47a7b1ef
Component: cli
2017-06-02 00:10:57 +00:00
09b39a76f1
Add bash completion for service create|update --rollback-*
...
Also remove wrong completion for `docker service create --rollback`
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 0ada299b10
Component: cli
2017-06-02 00:10:56 +00:00
33d9e6294f
Add support for rollback flags
...
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com >
Upstream-commit: 33ae729456
Component: cli
2017-06-02 00:10:56 +00:00
43638de628
Add support for the "rollback" failure action
...
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com >
Upstream-commit: 8271c2a624
Component: cli
2017-06-02 00:10:56 +00:00
efe7f44fd5
fix some typos from module contrib to man
...
Signed-off-by: Aaron.L.Xu <likexu@harmonycloud.cn >
Upstream-commit: f5fc4c26f3
Component: cli
2017-06-02 00:10:56 +00:00
951746da22
Topology-aware scheduling
...
This adds support for placement preferences in Swarm services.
- Convert PlacementPreferences between GRPC API and HTTP API
- Add --placement-pref, --placement-pref-add and --placement-pref-rm to CLI
- Add support for placement preferences in service inspect --pretty
- Add integration test
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com >
Upstream-commit: 0248b4df54
Component: cli
2017-06-02 00:10:56 +00:00
e63c8ee73b
Improve POSIX compatibility of bash completion
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 9f967c7050
Component: cli
2017-06-02 00:10:56 +00:00
0d542318dc
update deprecation dates
...
Signed-off-by: Victor Vieux <victorvieux@gmail.com >
Upstream-commit: 04731761bc
Component: cli
2017-06-02 00:10:56 +00:00
4a9d19fc63
Update index.md
...
Signed-off-by: Wang Jie <wangjie5@chinaskycloud.com >
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: 2c9f862eaf
Component: cli
2017-06-02 00:10:56 +00:00
a39ef73c0d
Bash completion for docker service ps completes only one service
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 85db624317
Component: cli
2017-06-02 00:10:56 +00:00
fec035ef1b
remove Jekyll tags from CLI reference
...
These Markdown files are now embedded in a YAML
file for templating in the documentation, and
these special markers are no longer needed.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: 8e7dd976f8
Component: cli
2017-06-02 00:10:56 +00:00
ded0855252
Add --stop-signal for service create and service update
...
This fix tries to address the issue raised in 25696 where
it was not possible to specify `--stop-signal` for `docker service create`
and `docker service update`, in order to use special signal to stop
the container.
This fix adds `--stop-signal` and update the `StopSignal` in `Config`
through `service create` and `service update`.
Related docs has been updated.
Integration test has been added.
This fix fixes 25696.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
Upstream-commit: e9457714cf
Component: cli
2017-06-02 00:10:56 +00:00
bad34967bc
Hide aliases in bash completion of docker node|service
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 9f2d9da271
Component: cli
2017-06-02 00:10:56 +00:00
03bbd2f84a
Remove incorrect duplicate phrase from build.md
...
A phrase from the "Text files" section in build.md was incorrectly duplicated under the "Tarball contexts" section.
Signed-off-by: Peter Jaffe <pjaffe@nevo.com >
Upstream-commit: 3a9b35dfa4
Component: cli
2017-06-02 00:10:56 +00:00
bcb5191002
Service creation using network plugin filters.
...
Signed-off-by: Anusha Ragunathan <anusha.ragunathan@docker.com >
Upstream-commit: 93344b57f3
Component: cli
2017-06-02 00:10:56 +00:00
6d2c16f8fd
Add bash completion for docker build --add-host
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: a584bd3b1a
Component: cli
2017-06-02 00:10:56 +00:00
d9e38bf671
Add --add-host for docker build
...
Signed-off-by: Tony Abboud <tdabboud@hotmail.com >
Upstream-commit: 174d9f0097
Component: cli
2017-06-02 00:10:56 +00:00
ff678e443c
Fix bash completion for docker service ps --filter node
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 09b2383b91
Component: cli
2017-06-02 00:10:56 +00:00
6ad7098f18
Add completion for --filter desired-state=shutdown
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 0ec2d368a8
Component: cli
2017-06-02 00:10:56 +00:00
e0bd29f9ac
Add bash completion for missing filters of docker node ls
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 170fa8ca4c
Component: cli
2017-06-02 00:10:55 +00:00
0e004eba24
Activate bash completion for Windows executable
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: bf0f159175
Component: cli
2017-06-02 00:10:55 +00:00
1e8d9e0c5e
Clarify why hosts in daemon.json does not work
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: e66bc57039
Component: cli
2017-06-02 00:10:55 +00:00
dba622ebee
Delete dots to align with other commands description
...
Signed-off-by: yupengzte <yu.peng36@zte.com.cn >
Upstream-commit: 21f6dce0a0
Component: cli
2017-06-02 00:10:55 +00:00
a7d5248d4a
[Docs] Add docs for stating stopped containers
...
This commit adds docs with example showing `docker stats` stopped
containers.
Signed-off-by: Zhang Wei <zhangwei555@huawei.com >
Upstream-commit: 12053f480b
Component: cli
2017-06-02 00:10:55 +00:00
2cc38cf538
fix the type
...
Signed-off-by: yupengzte <yu.peng36@zte.com.cn >
Upstream-commit: 6f3f9e384c
Component: cli
2017-06-02 00:10:55 +00:00
6669309a99
add rollback explanation to docker service update command document
...
Signed-off-by: erxian <evelynhsu21@gmail.com >
Upstream-commit: 1869390de8
Component: cli
2017-06-02 00:10:55 +00:00
e62d9d7004
Fix whitespace error.
...
Signed-off-by: Andrew McDonnell <bugs@andrewmcdonnell.net >
Upstream-commit: 5140cef92a
Component: cli
2017-06-02 00:10:55 +00:00
400bf05854
Add daemon flag to set no_new_priv as default for unprivileged containers.
...
Signed-off-by: Daniel Zhang <jmzwcn@gmail.com >
Upstream-commit: 218740abc7
Component: cli
2017-06-02 00:10:55 +00:00
bc16584b47
Add --format to docker service ps
...
This fix tries to address the issue raised in 27189 where
it is not possible to support configured formatting stored in
config.json.
Since `--format` was not supported in `docker service ps`,
the flag `--format` has also been added in this fix.
This fix
1. Add `--format` to `docker service ps`
2. Add `tasksFormat` to config.json
3. Add `--format` to `docker stack ps`
4. Add `--format` to `docker node ps`
The related docs has been updated.
An integration test has been added.
This fix fixes 27189.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
Upstream-commit: 1328bb4440
Component: cli
2017-06-02 00:10:55 +00:00
d75af760e9
why there are so many mistakes in our repo (up to /cmd)
...
Signed-off-by: Aaron.L.Xu <likexu@harmonycloud.cn >
Upstream-commit: 8279870a1f
Component: cli
2017-06-02 00:10:55 +00:00
a1fc8b3905
Add example for --device-cgroup-rule to create reference
...
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com >
Upstream-commit: dd6886657d
Component: cli
2017-06-02 00:10:55 +00:00
4ddd044359
Fix some Liquid errors
...
Signed-off-by: Misty Stanley-Jones <misty@docker.com >
Upstream-commit: f36bcf1acd
Component: cli
2017-06-02 00:10:55 +00:00
53eb368255
Add zsh completion for docker log options 'max-buffer-size|mode'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: 8c14c4f001
Component: cli
2017-06-02 00:10:55 +00:00
5c08d35278
Update plugin_volume apidocs for v2
...
Signed-off-by: Misty Stanley-Jones <misty@docker.com >
Upstream-commit: 38ac6860eb
Component: cli
2017-06-02 00:10:55 +00:00
be42fef480
Add plugin socket related debug docs.
...
Signed-off-by: Anusha Ragunathan <anusha.ragunathan@docker.com >
Upstream-commit: ab7522c939
Component: cli
2017-06-02 00:10:55 +00:00
e990a45379
Fix bash completion for start --checkpoint
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: f004bb9cf9
Component: cli
2017-06-02 00:10:55 +00:00
aa0cc42243
Add zsh completion for 'docker service logs' command
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: 924aff0cd4
Component: cli
2017-06-02 00:10:55 +00:00
14c4467684
Add zsh completion for 'docker checkpoint' commands
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: 6108385baa
Component: cli
2017-06-02 00:10:54 +00:00
07f5778f94
Add zsh completion for missing 'docker plugin' commands and options
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: d5c236ca20
Component: cli
2017-06-02 00:10:54 +00:00
b41c5d712a
Fix useless trailing backslash in zsh completion
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: a93d410af7
Component: cli
2017-06-02 00:10:54 +00:00
f7828d31ba
Add cache invalidation in zsh completion when the DOCKER_HIDE_LEGACY_COMMANDS envvar changes
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: 8691d0dd68
Component: cli
2017-06-02 00:10:54 +00:00