Sebastiaan van Stijn
46064f33f4
Docs: update filter options for docker container ps
...
The `is-task` filter was only documented in the usage
section, but this section is not used in the documentation.
This patch adds the missing filter, synchronises the
man page source, and does some slight rephrasing
and reformatting of the filters.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-07-27 22:10:26 +02:00
Harald Albers
1862ac1e63
Add support for redirections in bash completion for `docker save|load`
...
Signed-off-by: Harald Albers <github@albersweb.de>
2017-07-27 14:45:15 +02:00
Harald Albers
abc793e333
Add file completion to bash completion for `secret create`
...
Signed-off-by: Harald Albers <github@albersweb.de>
2017-07-27 14:44:12 +02:00
Harald Albers
29d0f868e8
Add bash completion for `service scale --detach`
...
Signed-off-by: Harald Albers <github@albersweb.de>
2017-07-27 14:43:24 +02:00
Harald Albers
393dc4a8c4
Fix sort order of options in bash completion
...
See guidelines at the top of the script:
# Note for developers:
# Please arrange options sorted alphabetically by long name with the
# short options immediately following their corresponding long form.
# This order should be applied to lists, alternatives and code blocks.
Signed-off-by: Harald Albers <github@albersweb.de>
2017-07-27 14:38:27 +02:00
Jean-Pierre Huynh
04d905f6fa
Add zsh completion for `docker service scale --detach=false`
...
Signed-off-by: Jean-Pierre Huynh <jean-pierre.huynh@ounet.fr>
2017-07-27 07:48:39 +01:00
Christophe Robin
b129a70b5c
Add support for stop-signal in stack command
...
Signed-off-by: Christophe Robin <crobin@nekoo.com>
2017-07-27 13:18:05 +09:00
Daniel Nephin
12a7387c8e
Add a warning when make is run outside of a container.
...
The warning can be disabled by setting the environment variable
Signed-off-by: Daniel Nephin <dnephin@docker.com>
2017-07-26 15:58:15 -04:00
Daniel Nephin
2dac00bdca
Merge pull request #319 from keloyang/bugfix-docker-cp
...
Bugfix docker cp
2017-07-26 11:56:12 -04:00
Sebastiaan van Stijn
915b18bdc9
Merge pull request #379 from jphuynh/completion-zsh-plugin-ls-filter
...
Add metric plugins to zsh completion for `plugin ls --filter capability`
2017-07-25 20:02:26 +02:00
Jean-Pierre Huynh
ff61438328
Add metric plugins to zsh completion for `plugin ls --filter capability`
...
Signed-off-by: Jean-Pierre Huynh <jean-pierre.huynh@ounet.fr>
2017-07-25 09:24:35 +01:00
Sebastiaan van Stijn
7cf9e752d5
Merge pull request #375 from hernandanielg/doc/fix_volume_ls
...
fixed word network on volume_ls.md
2017-07-25 03:05:37 +02:00
Sebastiaan van Stijn
4c30fbcf4c
Merge pull request #371 from jphuynh/completion-zsh-service-create-update-publish
...
Remove duplicate publish option in docker service create/update
2017-07-25 02:54:05 +02:00
Hernan Garcia
f5bca7af10
fixed word network on volume_ls.md
...
Signed-off-by: Hernan Garcia <hernandanielg@gmail.com>
2017-07-24 05:18:10 -05:00
Sebastiaan van Stijn
1338f11ee7
Merge pull request #374 from thaJeztah/bump-version
...
Bump version to 17.08.0-dev
2017-07-24 01:03:20 +02:00
Sebastiaan van Stijn
a8bcbfd9e0
Bump version to 17.08.0-dev
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-07-22 03:13:52 +02:00
Sebastiaan van Stijn
deab50ba19
Merge pull request #363 from jphuynh/shellcheckReadme
...
Update README and add help target to make
2017-07-22 03:06:53 +02:00
Sebastiaan van Stijn
b175e3aacd
Merge pull request #311 from thaJeztah/fix-system-prune-until
...
Error if "until" filter is combined with "--volumes" on system prune
2017-07-22 03:04:58 +02:00
Jean-Pierre Huynh
649a5864f3
Update README and add help target to make
...
Signed-off-by: Jean-Pierre Huynh <jean-pierre.huynh@ounet.fr>
2017-07-21 16:57:06 +01:00
Sebastiaan van Stijn
3c095dc546
Error if "until" filter is combined with "--volumes" on system prune
...
The "until" filter is supported by all object types, except for
volumes.
Before this patch, the "until" filter would attempted to be used for the volume
prune endpoint, resulting in an error being returned by the daemon, and
further prune endpoints (networks, images) to be skipped.
$ docker system prune --filter until=24h --filter label=label.foo=bar
WARNING! This will remove:
- all stopped containers
- all volumes not used by at least one container
- all networks not used by at least one container
- all dangling images
Are you sure you want to continue? [y/N] y
Error response from daemon: Invalid filter 'until'
Calling POST /v1.30/containers/prune?filters=%7B%22label%22%3A%7B%22label.foo%3D%3Dbar%22%3Atrue%7D%2C%22until%22%3A%7B%2224h%22%3Atrue%7D%7D
Calling POST /v1.30/volumes/prune?filters=%7B%22label%22%3A%7B%22label.foo%3D%3Dbar%22%3Atrue%7D%2C%22until%22%3A%7B%2224h%22%3Atrue%7D%7D
Handler for POST /v1.30/volumes/prune returned error: Invalid filter 'until'
Error response from daemon: Invalid filter 'until'
With this patch, an error is produced instead, preventing "partial" prune.
$ docker system prune --filter until=24h --filter label=foo==bar --volumes
ERROR: The "until" filter is not supported with "--volumes"
Note that `docker volume prune` does not have this problem, and produces an
error if the `until` filter is used;
$ docker volume prune --filter until=24h
WARNING! This will remove all volumes not used by at least one container.
Are you sure you want to continue? [y/N] y
Error response from daemon: Invalid filter 'until'
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-07-21 12:11:53 +02:00
Vincent Demeester
33a25708d4
Merge pull request #369 from jphuynh/completion-zsh-get-log-options
...
Update __docker_get_log_options completion (zsh)
2017-07-21 11:25:17 +02:00
Vincent Demeester
814827ef0d
Merge pull request #368 from jphuynh/completion-zsh-system-prune-volumes
...
Add zsh completion for `system prune --volumes`
2017-07-21 11:20:59 +02:00
Vincent Demeester
36b9edff7e
Merge pull request #364 from ksouf/issue-37-add-connect-disconnect
...
adding connect disconnect network tests
2017-07-21 11:19:23 +02:00
Sebastiaan van Stijn
25ca529388
Merge pull request #223 from ripcurld0/docs_cp_prm
...
Update the cp command docs to include archive
2017-07-21 11:14:15 +02:00
Vincent Demeester
472ce90624
Merge pull request #291 from thaJeztah/bump-swarmkit
...
Bump swarmkit and dependencies to 79381d0840be27f8b3f5c667b348a4467d866eeb
2017-07-21 11:07:38 +02:00
Jean-Pierre Huynh
6c65ba6c08
Remove duplicate publish option in docker service create/update completion
...
Signed-off-by: Jean-Pierre Huynh <jean-pierre.huynh@ounet.fr>
2017-07-21 09:53:43 +01:00
Jean-Pierre Huynh
d7ade64d29
Update __docker_get_log_options completion
...
Signed-off-by: Jean-Pierre Huynh <jean-pierre.huynh@ounet.fr>
2017-07-20 23:41:47 +01:00
Jean-Pierre Huynh
6b256484ae
Add zsh completion for `system prune --volumes`
...
Signed-off-by: Jean-Pierre Huynh <jean-pierre.huynh@ounet.fr>
2017-07-20 23:13:04 +01:00
Sebastiaan van Stijn
dfbad2bc5a
Merge pull request #357 from ripcurld0/nat_sort_service
...
Sort services names in a natural order
2017-07-20 22:56:09 +02:00
khaled souf
7296abf39f
adding connect disconnect network tests
...
Signed-off-by: khaled souf <khaled.souf@gmail.com>
2017-07-20 18:53:03 +02:00
Sebastiaan van Stijn
eabdace628
Merge pull request #365 from dnephin/more-codeowners
...
Fix shellcheck on master and other cleanup
2017-07-20 18:35:09 +02:00
Daniel Nephin
14d2c95d4a
Fix shellcheck on master
...
Signed-off-by: Daniel Nephin <dnephin@docker.com>
2017-07-20 12:11:27 -04:00
Daniel Nephin
60991e943b
Add myself to command/stack codeowners
...
Cleanup a test
Signed-off-by: Daniel Nephin <dnephin@docker.com>
2017-07-20 12:05:20 -04:00
Sebastiaan van Stijn
45a7e1ca87
Merge pull request #281 from albers/completion-plugin-ls--filter-capability
...
Add metric plugins to bash completion for `plugin ls --filter capability`
2017-07-20 13:39:51 +02:00
Sebastiaan van Stijn
ab05e0aa63
Merge pull request #280 from albers/completion-awslog-multiline
...
Add bash completion for awslogs multiline log driver options
2017-07-20 13:39:10 +02:00
Vincent Demeester
3d76febd17
Merge pull request #332 from tych0/docs-fixups-for-password-stdin
...
Docs fixups for password stdin
2017-07-20 11:31:23 +02:00
Vincent Demeester
c394cd9bb7
Merge pull request #279 from albers/completion-build--iidfile
...
Add bash completion for `build --iidfile`
2017-07-20 09:57:05 +02:00
Vincent Demeester
cc6867f456
Merge pull request #284 from albers/completion-service--detach
...
Fix bash completion for `service create|update --detach|-d`
2017-07-20 09:47:59 +02:00
Vincent Demeester
a4d76989bd
Merge pull request #283 from albers/completion-configs
...
Add bash completion for `docker config` command family
2017-07-20 09:45:01 +02:00
Sebastiaan van Stijn
79b6d376ce
Merge pull request #362 from alexmavr/stack-host-bridge-nets
...
Skip inspect of built-in networks on stack deploy
2017-07-20 07:47:27 +02:00
Alex Mavrogiannis
7f53c99dfe
Skip inspects of built-in networks on stack deploy
...
Signed-off-by: Alex Mavrogiannis <alex.mavrogiannis@docker.com>
2017-07-19 19:39:44 -07:00
Daniel Nephin
0adccacb38
Add Compose format 3.4
...
Signed-off-by: Daniel Nephin <dnephin@docker.com>
2017-07-19 14:24:59 -07:00
Jean-Pierre Huynh
24c06c1723
Add scripts folder to shellcheck
...
Signed-off-by: Jean-Pierre Huynh <jean-pierre.huynh@ounet.fr>
2017-07-19 16:33:58 +01:00
Boaz Shuster
7478e47b2d
Sort services names in a natural order
...
Signed-off-by: Boaz Shuster <ripcurld.github@gmail.com>
2017-07-19 18:18:06 +03:00
Victor Vieux
7f684c7512
Merge pull request #356 from dnephin/fix-codeowners
...
Fix .github/CODEOWNERS patterns
2017-07-18 17:08:37 -07:00
Daniel Nephin
cea8b4f4f3
Fix CODEOWNERS patterns.
...
Signed-off-by: Daniel Nephin <dnephin@docker.com>
2017-07-18 18:25:55 -04:00
Tycho Andersen
3b7b6b5f7f
fish completion: add --password-stdin
...
Signed-off-by: Tycho Andersen <tycho@docker.com>
2017-07-18 15:25:46 -06:00
Tycho Andersen
90619e5054
zsh completion: add --password-stdin
...
Signed-off-by: Tycho Andersen <tycho@docker.com>
2017-07-18 15:25:46 -06:00
Tycho Andersen
bbfe23f9e6
bash completion: add --password-stdin
...
Signed-off-by: Tycho Andersen <tycho@docker.com>
2017-07-18 15:25:46 -06:00
Tycho Andersen
3e392505a8
docs: add --password-stdin
...
also add an example of usage
Signed-off-by: Tycho Andersen <tycho@docker.com>
2017-07-18 15:25:46 -06:00