Commit Graph

144 Commits

Author SHA1 Message Date
09809fe27e bash completion for docker network create --internal, --ipam-opt
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:24 +00:00
de6da285a3 bash completion for --detach-keys
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:24 +00:00
7f6a7ed8d1 Rename authz to authorization for greater clarity
Signed-off-by: Tibor Vass <tibor@docker.com>
2017-06-02 00:07:23 +00:00
9c8b6e05a4 bash completion for connecting non-running containers to networks
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:23 +00:00
caa120d3ca bash completion for docker {build,create,run} --shm-size
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:22 +00:00
effe34067f bash completion for docker update
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:22 +00:00
3b7695959d bash completion for docker daemon --cgroup-parent
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:22 +00:00
442d408fc7 bash completion for --isolation
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:22 +00:00
9a63a5cdd6 Compute plugin list in bash completion for docker daemon --authz-plugin
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:21 +00:00
c8195c7cd5 bash completion for docker network ls --filter
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:21 +00:00
a36ca600a0 remove --format from bash completion for docker network rm
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:21 +00:00
c227b6ac11 Better function names in bash completion
The new names make it easier to distinguish between helper functions and
functions that actually perform completion by modifying the global COMPOPT
variable.

Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:21 +00:00
499d634f32 Add support for blkio read/write iops device
Signed-off-by: Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
2017-06-02 00:07:21 +00:00
57a8c59820 Use computed plugin lists in bash completion
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:21 +00:00
1e3c5bbe15 Add --format support to images command
- rename `api/client/ps` to `api/client/formatter`
- add a a image formatter

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2017-06-02 00:07:21 +00:00
9339b4abb5 bash completion for docker daemon --authz-plugin
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:20 +00:00
b4a012656c Improve bash completion for docker network disconnect
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:19 +00:00
ac40ecf711 update bash completion for seccomp
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
2017-06-02 00:07:19 +00:00
9480c4763d Add support for blkio read/write bps device
Signed-off-by: Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
2017-06-02 00:07:19 +00:00
c6162061d9 Add format flag to network inspect
…for consistency as docker inspect and docker volume inspect supports it too

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2017-06-02 00:07:19 +00:00
e9287cd43a Add OomScoreAdj to configure container oom killer preferences
libcontainer v0.0.4 introduces setting `/proc/self/oom_score_adj` to
better tune oom killing preferences for container process. This patch
simply integrates OomScoreAdj libcontainer's config option and adjust
the cli with this new option.

Signed-off-by: Antonio Murdaca <amurdaca@redhat.com>
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2017-06-02 00:07:19 +00:00
65120e8851 This patch adds --tmpfs as a option for mounting tmpfs on directories
It will Tar up contents of child directory onto tmpfs if mounted over

This patch will use the new PreMount and PostMount hooks to "tar"
up the contents of the base image on top of tmpfs mount points.

Signed-off-by: Dan Walsh <dwalsh@redhat.com>
2017-06-02 00:07:18 +00:00
a148373062 Allow configurable metadata for Splunk log driver
Add support of `tag`, `env` and `labels` for Splunk logging driver.
Removed from message `containerId` as it is the same as `tag`.

Signed-off-by: Denis Gladkikh <denis@gladkikh.email>
2017-06-02 00:07:17 +00:00
d998542977 bash completion for docker {run,create} --volume-driver
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:17 +00:00
e303d6cc9f Add support for blkio.weight_device
Signed-off-by: Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
2017-06-02 00:07:17 +00:00
2c0feab2a1 Align configuration of bash completion with existing values
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:16 +00:00
7fa96238a6 Fix bash completion on systems where extglob is not set
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:16 +00:00
2607803a34 bash completion for docker stats --all
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:16 +00:00
f9b805f16f Remove exec-driver global daemon option.
Each platform has only a driver now.

Signed-off-by: David Calavera <david.calavera@gmail.com>
2017-06-02 00:07:15 +00:00
c5ed875bd9 Remove LXC support.
The LXC driver was deprecated in Docker 1.8.
Following the deprecation rules, we can remove a deprecated feature
after two major releases. LXC won't be supported anymore starting on Docker 1.10.

Signed-off-by: David Calavera <david.calavera@gmail.com>
2017-06-02 00:07:15 +00:00
1e2a27568b Add Splunk logging driver #16207
Allow to send Splunk logs using Http Event Collector

Signed-off-by: Denis Gladkikh <denis@gladkikh.email>
2017-06-02 00:07:14 +00:00
a41d4dbdde bash completion for log driver options env and labels
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:14 +00:00
be7caf2647 bash completion can be configured to complete network IDs
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:14 +00:00
b20b7584de bash completion for docker network inspect supports multiple networks
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:14 +00:00
6b43a0aa73 bash completion for docker cp supports copying both ways
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:14 +00:00
a2bbb2c61c bash completion for new docker network create options
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:14 +00:00
28f2bdf335 Bash completion for restart policy unless-stopped
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:13 +00:00
321a5b38e7 bash completion: support for dm.use_deferred_* options
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:13 +00:00
4c506e1df7 Deprecate -c cli short variant flag in docker cli
- build
- create

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2017-06-02 00:07:13 +00:00
c3c2867b15 Add missing options to bash completion for docker import
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:13 +00:00
9d4969150a bash completion: minor refactoring for consistency
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:13 +00:00
0ef21aeab2 Add missing options to bash completion for docker build
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:13 +00:00
3a779b2995 Added network to docker --help and help cleanup
Fixes https://github.com/docker/docker/issues/16909

Signed-off-by: Madhu Venugopal <madhu@docker.com>
2017-06-02 00:07:13 +00:00
3a89624209 Add bash completion for docker inspect --size
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:12 +00:00
966ebe7b62 Bash completion for docker network
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:12 +00:00
26294f39f2 Refactor bash completion: pull out subcommand parsing
`docker network` is the second command with subcommands.

This refactoring pulls out parsing and processing of subcommands
from `docker volume` completion and thus makes its logic available
for other commands.

Also enables `__docker_pos_first_nonflag` for subcommand completion.

Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:12 +00:00
4fcea52287 Add bash completion for --cluster-store-opt
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:12 +00:00
0afb6cc862 change flag name to better follow the other flags that start with disable;
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
2017-06-02 00:07:11 +00:00
1b1a0a0835 Add bash completion for --no-legacy-registry
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:10 +00:00
3fce5e1084 bash completion for docker daemon --cluster-*
Signed-off-by: Harald Albers <github@albersweb.de>
2017-06-02 00:07:10 +00:00