Sebastiaan van Stijn
3b7ea4d8c3
Merge pull request #25208 from sdurrheimer/zsh-completion-service-create-update-container-labels
...
Add zsh completion for 'docker service {create,update} --container-label{-add,-rm}
2016-07-29 09:59:46 +02:00
Steve Durrheimer
ab95ec3dd9
Add zsh completion for 'docker service {create,update} --container-label{-add,-rm}'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-29 07:54:10 +02:00
Steve Durrheimer
f146f6127c
Remove zsh completion for 'docker swarm inspect'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-29 07:41:27 +02:00
Alexander Morozov
4084bf7ad2
Merge pull request #24555 from thaJeztah/to-infinity-and-beyond
...
Don't set ulimits (nproc) for all init scripts
2016-07-28 16:48:16 -07:00
Sebastiaan van Stijn
8a8a63aa32
Merge pull request #25137 from justincormack/32bit-seccomp-test
...
Add a test that the default seccomp profile allows execution of 32 bit binaries
2016-07-28 17:01:04 +02:00
Stephen J Day
0aa4e1e689
cli: docker service|node|stack ps
instead of tasks
...
Rather than conflict with the unexposed task model, change the names of
the object-oriented task display to `docker <object> ps`. The command
works identically to `docker service tasks`. This change is superficial.
This provides a more sensical docker experience while not trampling on
the task model that may be introduced as a top-level command at a later
date.
The following is an example of the display using `docker service ps`
with a service named `condescending_cori`:
```
$ docker service ps condescending_cori
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
e2cd9vqb62qjk38lw65uoffd2 condescending_cori.1 condescending_cori alpine Running 13 minutes ago Running 6c6d232a5d0e
```
The following shows the output for the node on which the command is
running:
```console
$ docker node ps self
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
b1tpbi43k1ibevg2e94bmqo0s mad_kalam.1 mad_kalam apline Accepted 2 seconds ago Accepted 6c6d232a5d0e
e2cd9vqb62qjk38lw65uoffd2 condescending_cori.1 condescending_cori alpine Running 12 minutes ago Running 6c6d232a5d0e
4x609m5o0qyn0kgpzvf0ad8x5 furious_davinci.1 furious_davinci redis Running 32 minutes ago Running 6c6d232a5d0e
```
Signed-off-by: Stephen J Day <stephen.day@docker.com>
2016-07-27 11:06:42 -07:00
Justin Cormack
93bbc76ee5
Add a test that the default seccomp profile allows execution of 32 bit binaries
...
While testing #24510 I noticed that 32 bit syscalls were incorrectly being
blocked and we did not have a test for this, so adding one.
This is only tested on amd64 as it is the only architecture that
reliably supports 32 bit code execution, others only do sometimes.
There is no 32 bit libc in the buildpack-deps so we cannot build
32 bit C code easily so use the simplest assembly program which
just calls the exit syscall.
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-07-27 18:42:34 +01:00
Michael Crosby
3cddda3bbb
Remove the Require on the socket for the rpm
...
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2016-07-26 14:56:27 -07:00
Sebastiaan van Stijn
00295c4bb3
Merge pull request #25060 from albers/completion-swarm-inspect
...
Remove bash completion for `docker swarm inspect`
2016-07-26 13:56:11 +02:00
Harald Albers
34d9a82409
Remove bash completion for docker swarm inspect
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-26 04:51:27 -07:00
Harald Albers
13c138ec2a
bash completion for container labels to service {create,update}
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-26 04:45:57 -07:00
Tibor Vass
c65925f24b
Merge pull request #24943 from aaronlehmann/rolling-updates
...
Add failure action for rolling updates
2016-07-25 10:15:28 -07:00
Aaron Lehmann
57ae29aa74
Add failure action for rolling updates
...
This changes the default behavior so that rolling updates will not
proceed once an updated task fails to start, or stops running during the
update. Users can use docker service inspect --pretty servicename to see
the update status, and if it pauses due to a failure, it will explain
that the update is paused, and show the task ID that caused it to pause.
It also shows the time since the update started.
A new --update-on-failure=(pause|continue) flag selects the
behavior. Pause means the update stops once a task fails, continue means
the old behavior of continuing the update anyway.
In the future this will be extended with additional behaviors like
automatic rollback, and flags controlling parameters like how many tasks
need to fail for the update to stop proceeding. This is a minimal
solution for 1.12.
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
2016-07-25 08:51:19 -07:00
Vincent Demeester
40044cb18f
Merge pull request #24963 from allencloud/fix-typos
...
fix typos
2016-07-25 09:39:48 +02:00
Steve Durrheimer
a04bba8b89
Add zsh completion for 'docker swarm join-token' command
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-25 08:39:33 +02:00
Aaron Lehmann
a0ccd0d42f
Split advertised address from listen address
...
There are currently problems with "swarm init" and "swarm join" when an
explicit --listen-addr flag is not provided. swarmkit defaults to
finding the IP address associated with the default route, and in cloud
setups this is often the wrong choice.
Introduce a notion of "advertised address", with the client flag
--advertise-addr, and the daemon flag --swarm-default-advertise-addr to
provide a default. The default listening address is now 0.0.0.0, but a
valid advertised address must be detected or specified.
If no explicit advertised address is specified, error out if there is
more than one usable candidate IP address on the system. This requires a
user to explicitly choose instead of letting swarmkit make the wrong
choice. For the purposes of this autodetection, we ignore certain
interfaces that are unlikely to be relevant (currently docker*).
The user is also required to choose a listen address on swarm init if
they specify an explicit advertise address that is a hostname or an IP
address that's not local to the system. This is a requirement for
overlay networking.
Also support specifying interface names to --listen-addr,
--advertise-addr, and the daemon flag --swarm-default-advertise-addr.
This will fail if the interface has multiple IP addresses (unless it has
a single IPv4 address and a single IPv6 address - then we resolve the
tie in favor of IPv4).
This change also exposes the node's externally-reachable address in
docker info, as requested by #24017 .
Make corresponding API and CLI docs changes.
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
2016-07-24 09:23:07 -07:00
allencloud
4e959ef2f7
fix typos
...
Signed-off-by: allencloud <allen.sun@daocloud.io>
2016-07-23 11:32:23 +08:00
Tibor Vass
771cf83807
Merge pull request #24934 from albers/completion-swarm-join-token
...
bash completion for `docker swarm join-token`
2016-07-22 11:24:25 -07:00
Vincent Demeester
97039324c0
Merge pull request #24885 from vdemeester/24875-registrauth-with
...
Rename `--registry-auth` to `--with-registry-auth`
2016-07-22 19:05:49 +02:00
Harald Albers
42b4d6ebe4
bash completion for docker swarm join-token
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-22 17:39:55 +02:00
Sebastiaan van Stijn
c4ab20c5f8
remove "secrets" from completion scripts
...
Swarm join has been changed in f5e1f6f688
,
removing various options and the "node accept" command.
This removes the removed options from the completion
scripts.
NOTE: a new command ("docker swarm join-token") was
also added, but is not part of this commit.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-07-22 14:26:21 +02:00
Vincent Demeester
8426f72107
Append --registry-auth with with
...
`--with-registry-auth` is more explicit.
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-07-22 10:38:56 +02:00
Aaron Lehmann
2cc5bd33ee
Replace secrets with join tokens
...
Implement the proposal from
https://github.com/docker/docker/issues/24430#issuecomment-233100121
Removes acceptance policy and secret in favor of an automatically
generated join token that combines the secret, CA hash, and
manager/worker role into a single opaque string.
Adds a docker swarm join-token subcommand to inspect and rotate the
tokens.
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
2016-07-21 15:23:03 -07:00
Harald Albers
6c98d5bfac
Add manual support for macvlan networks to bash completion
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-20 13:13:14 -07:00
Harald Albers
492fdf1f57
Update completions for syslog log driver options
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-20 12:35:04 -07:00
Vincent Demeester
5527763f8c
Merge pull request #24828 from sdurrheimer/zsh-completion-node-update-label-add-rm
...
Add zsh completion for 'docker node update --label-{add,rm}'
2016-07-20 11:47:03 +02:00
Steve Durrheimer
45484f5458
Add zsh completion for 'docker service {create,update} --log-{driver,opt}'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-20 09:18:59 +02:00
Steve Durrheimer
cdb8383d7f
Add zsh completion for 'docker node update --label-{add,rm}'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-20 09:11:16 +02:00
Tibor Vass
39327a67e8
Merge pull request #24804 from crosbymichael/rpm-socket
...
Remove docker.socket from rpm based systems
2016-07-19 11:18:22 -07:00
Michael Crosby
04104c3a1e
Remove docker.socket from rpm based systems
...
Fixes #23981
The selinux issue we are seeing in the report is related to the socket
file for docker and nothing else. By removing the socket docker starts
up correctly.
However, there is another motivation for removing socket activation from
docker's systemd files and that is because when you have daemons running
with --restart always whenever you have a host reboot those daemons
will not be started again because the docker daemon is not started by
systemd until a request comes into the docker API.
Leave it for deb based systems because everything is working correctly
for both socket activation and starting normally at boot.
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2016-07-19 09:31:43 -07:00
Sebastiaan van Stijn
be2e2fca08
Merge pull request #24791 from albers/completion-node-update-labels
...
bash completion for `docker node update --label-{add,rm}`
2016-07-19 15:22:29 +02:00
Harald Albers
823e161de7
bash completion for docker service {create,update} --log-{driver,opt}
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-19 13:20:40 +02:00
Harald Albers
bc6e3c0b5e
bash completion for docker node update --label-{add,rm}
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-19 13:09:28 +02:00
Sebastiaan van Stijn
589bafddf3
bump Go to 1.6.3
...
following the announcement;
https://groups.google.com/forum/m/#!topic/golang-announce/7JTsd70ZAT0
> [security] Go 1.6.3 and Go 1.7rc2 pre-announcement
>
> Hello gophers,
> We plan to issue Go 1.6.3 and Go 1.7rc2 on Monday July 18 at approximately 2am UTC.
> These are minor release to fix a security issue.
>
> Following our policy at https://golang.org/security , this is the pre-announcement of those releases.
>
> Because we are so late in the release cycle for Go 1.7, we will not issue a minor release of Go 1.5.
> Additionally, we plan to issue Go 1.7rc3 later next week, which will include any changes between 1.7rc1 and tip.
>
> Cheers,
> Chris on behalf of the Go team
**Note:**
the man/Dockerfile is not yet updated, because
the official image for Go 1.6.2 has not yet
been updated.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-07-18 23:15:03 +02:00
Arnaud Porterie
de64324109
Merge pull request #24705 from thaJeztah/update-flag-descriptions
...
Improve flag help consistency, and update docs
2016-07-18 16:07:23 +00:00
Sebastiaan van Stijn
ff1040bafc
Merge pull request #24599 from vdemeester/small-zsh-completion-fix
...
Small zsh completion fix on --pretty & --no-resolve
2016-07-16 02:55:32 +02:00
Sebastiaan van Stijn
64a8317a5a
Improve flag help consistency, and update docs
...
This adds the `--live-restore` option to the documentation.
Also synched usage description in the documentation
with the actual description, and re-phrased some
flag descriptions to be a bit more consistent.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-07-16 01:58:01 +02:00
Sebastiaan van Stijn
983fc99509
Merge pull request #24668 from sdurrheimer/zsh-completion-service-endpoint-mode
...
Update zsh completion for 'docker service {create,update} {--endpoint…
2016-07-15 14:40:45 +02:00
Steve Durrheimer
2e6922a6d3
Update zsh completion for 'docker service {create,update} {--endpoint-mode,--mode}'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-15 14:36:18 +02:00
Sebastiaan van Stijn
a968f83c55
Merge pull request #24666 from sdurrheimer/zsh-completion-dockerd-oom-score-adjust
...
Add zsh completion for 'dockerd --oom-score-adjust'
2016-07-15 13:47:39 +02:00
Vincent Demeester
2a888c02a6
Merge pull request #24667 from sdurrheimer/zsh-completion-docker-service-create-update-registry-auth
...
Add zsh completion for 'docker service {create,update} --registry-auth'
2016-07-15 11:15:55 +02:00
Vincent Demeester
d69fcf10cb
Merge pull request #24665 from sdurrheimer/zsh-completion-run-network
...
Rename zsh completion for 'docker {create,run} --net --net-alias' to …
2016-07-15 11:15:35 +02:00
Steve Durrheimer
64f08906a2
Add zsh completion for 'docker service {create,update} --registry-auth'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-15 08:23:57 +02:00
Steve Durrheimer
5d29732bdf
Add zsh completion for 'dockerd --oom-score-adjust'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-15 08:16:15 +02:00
Steve Durrheimer
ba5d9f63a3
Rename zsh completion for 'docker {create,run} --net --net-alias' to '--network --network-alias'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-15 08:09:20 +02:00
Paul Furtado
acb41ddc9d
Change $prog back to docker in sysvinit-redhat
...
(and set $exec to dockerd instead)
This ensures end users do not need to make any configuration changes
due to the rename from docker to dockerd in version 1.12.
Signed-off-by: Paul Furtado <pfurtado@hubspot.com>
2016-07-14 17:21:59 -04:00
Sebastiaan van Stijn
7925de9098
Merge pull request #24598 from albers/completion-daemon--oom-score-adjust
...
bash completion for `docker daemon --oom-score-adjust`
2016-07-13 23:34:54 +02:00
Vincent Demeester
698bd5ab65
Small zsh completion fix on --pretty & --no-resolve
...
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-07-13 22:03:11 +02:00
Harald Albers
e1e310ea1f
bash completion for docker daemon --oom-score-adjust
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-13 12:31:55 -07:00
Sebastiaan van Stijn
7bf0faf423
Remove shorthand flags for "mount", "pretty", and "no-resolve"
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-07-13 18:47:29 +02:00
Arnaud Porterie
58624acf11
Merge pull request #24525 from vdemeester/24196-remove-command-flag-on-service-update
...
Remove --command flag for service update
2016-07-13 16:01:11 +00:00
Sebastiaan van Stijn
428d7337e8
Don't set ulimits (nproc)
...
There is a not-insignificant performance overhead for all containers (if
containerd is a child of Docker, which is the current setup) if rlimits are
set on the main Docker daemon process (because the limits
propogate to all children).
We recommend using cgroups to do container-local accounting.
This applies the change added in 8db61095a3
to other init scripts.
Note that nfile cannot be set to unlimited, and the limit
is hardcoded to 1048576 (2^20) , see:
http://stackoverflow.com/a/1213069/1811501
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-07-13 17:15:19 +02:00
Vincent Demeester
e4a024d590
Remove --command flag for service update
...
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-07-13 16:19:21 +02:00
Sebastiaan van Stijn
a9a8d807f0
Merge pull request #24583 from albers/completion-run--network
...
Change bash completion for `docker run --net*` to `--network*`
2016-07-13 12:46:58 +02:00
Harald Albers
c4846f6972
Change bash completion for docker run --net*
to --network*
...
Ref: https://github.com/docker/docker/pull/23324
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-13 12:42:33 +02:00
Sebastiaan van Stijn
5d11a7987b
Merge pull request #24301 from coolljt0725/add_dummy_to_check_config
...
Add IPVLAN and DUMMY to check-config.sh
2016-07-13 12:38:27 +02:00
Antonio Murdaca
ae1a809c39
Merge pull request #24581 from albers/completion-service--endpoint-mode
...
Update bash completion for `docker service {create,update} {--mode,--…
2016-07-13 09:52:52 +00:00
Harald Albers
a394490d38
Update bash completion for docker service {create,update} {--mode,--endpoint-mode}
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-13 11:37:31 +02:00
Harald Albers
a44e71c427
bash completion for docker service {create,update} --registry-auth
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-13 11:20:02 +02:00
Sebastiaan van Stijn
fa077f7496
use tabs for indentation
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-07-12 23:16:55 +02:00
Dillon Dixon
9b5622a6df
Changed to 1800 second timeout for all ARMV*
...
Signed-off-by: Dillon Dixon <dillondixon@gmail.com>
2016-07-10 18:47:14 -07:00
Dillon Dixon
84d285d28f
Fixed arm arch image maker to support arm versions other than 7
...
Signed-off-by: Dillon Dixon <dillondixon@gmail.com>
2016-07-10 18:46:35 -07:00
Brian Goff
2664f37452
Merge pull request #24119 from albers/completion-swarm-mode
...
Fix & improve bash completion for swarm mode commands
2016-07-08 15:34:51 -04:00
Lei Jitang
f5940ef725
Add IPVLAN and DUMMY to check-config.sh
...
This commit add DUMMY and IPVLAN to check-config.sh
because they are need for ipvlan and macvlan network
driver.
Signed-off-by: Lei Jitang <leijitang@huawei.com>
2016-07-07 21:21:57 -04:00
Vincent Demeester
a859a33647
Use "on-failure" for both containers and services
...
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-07-07 11:32:19 +02:00
Jonathan Lomas
7631dc80a6
Remove unmatched bracket from _docker for zsh
...
Signed-off-by: Jonathan Lomas <jonathan@floatinglomas.ca>
2016-07-06 08:57:28 -07:00
Brian Goff
34a9e9d051
Merge pull request #24307 from cyphar/remove-systemd-rlimits
...
contrib: systemd: set Limit* to infinity
2016-07-05 16:02:47 -04:00
Steve Durrheimer
f5d768e2c5
Add zsh completion for 'docker service' commands
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-04 15:14:58 +02:00
Aleksa Sarai
8db61095a3
contrib: systemd: set Limit* to infinity
...
There is a not-insignificant performance overhead for all containers (if
containerd is a child of Docker, which is the current setup) if systemd
sets rlimits on the main Docker daemon process (because the limits
propogate to all children).
Signed-off-by: Aleksa Sarai <asarai@suse.de>
2016-07-04 23:00:28 +10:00
Antonio Murdaca
d97233ca88
Merge pull request #24276 from sdurrheimer/zsh-completion-daemon-add-runtime
...
Add zsh completion for 'docker daemon --runtimes' and 'docker run --r…
2016-07-04 14:40:56 +02:00
Steve Durrheimer
7ae3caa4e9
Add zsh completion for 'docker plugin' commands
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-03 23:45:23 +02:00
Steve Durrheimer
2086663abd
Add zsh completion for 'docker swarm' commands
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-03 23:28:38 +02:00
Sebastiaan van Stijn
df3e3a227b
Merge pull request #24272 from sdurrheimer/zsh-completion-node
...
Add zsh completion for 'docker node' commands
2016-07-03 13:58:14 -07:00
Steve Durrheimer
1dc9cf4901
Add zsh completion for 'docker ps --last'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-03 20:38:54 +02:00
Harald Albers
009d50e2d8
bash completion for default port on docker swarm {init,join}
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-03 10:48:37 -07:00
Harald Albers
715754ee61
bash completion can be configured to show node and service IDs
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-03 10:48:37 -07:00
Harald Albers
2b34fa0511
bash completion for docker {service,node}
filters
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-03 10:48:37 -07:00
Harald Albers
dd883b0ce2
Add bash completion for docker ps --last
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-07-03 10:36:34 -07:00
Steve Durrheimer
a5c7eb607e
Add zsh completion for 'docker daemon --runtimes' and 'docker run --runtime'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-03 10:03:53 +02:00
Steve Durrheimer
024698718f
Add zsh completion for 'docker node' commands
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-07-03 01:10:30 +02:00
allencloud
184afb92bf
make cmd short short consistency and change docs
...
Signed-off-by: allencloud <allen.sun@daocloud.io>
2016-06-30 21:17:51 +08:00
Brian Goff
9e14002ced
Add ip_vs to check-config script
...
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
2016-06-28 13:42:38 -04:00
Brian Goff
cccfe63e86
Merge pull request #23868 from albers/completion-swarm-enhancements
...
bash completion enhancements for `docker {swarm,node,service}`
2016-06-27 10:55:54 -04:00
Vincent Demeester
18398b2933
Merge pull request #23859 from aboch/vnd
...
Update check-config.sh, netlink and libnetwork vendoring
2016-06-23 20:34:02 +02:00
Antonio Murdaca
0b83f27328
contrib: builder: rpm: add Fedora 24
...
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2016-06-23 12:31:11 +02:00
Vincent Demeester
e3a698fcd0
Merge pull request #23888 from sdurrheimer/zsh-completion-event-load-save
...
Add zsh completion for 'load' and 'save' image events
2016-06-23 10:13:01 +02:00
Vincent Demeester
28f4a8ca55
Merge pull request #23890 from sdurrheimer/zsh-completion-link-local-ip
...
Add zsh completion for 'docker {create,run,network connect} --link-lo…
2016-06-23 10:12:05 +02:00
Vincent Demeester
6211570de1
Merge pull request #23891 from sdurrheimer/zsh-completion-run-storage-opt
...
Add zsh completion for 'docker run --storage-opt size='
2016-06-23 10:11:02 +02:00
Vincent Demeester
29717dd347
Merge pull request #23892 from sdurrheimer/zsh-completion-cpu-shares-c
...
Re-Add zsh completion for '-c' alias to '--cpu-shares'
2016-06-23 10:09:59 +02:00
Steve Durrheimer
4c23ac0ae5
Re-Add zsh completion for '-c' alias to '--cpu-shares'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-23 08:57:39 +02:00
Steve Durrheimer
857e7d6ae4
Add zsh completion for 'docker run --storage-opt size='
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-23 08:52:42 +02:00
Steve Durrheimer
704d9b6864
Add zsh completion for 'docker {create,run,network connect} --link-local-ip'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-23 08:44:08 +02:00
Steve Durrheimer
8e582a2573
Add zsh completion for 'docker daemon --storage-driver (overlay2|vfs)'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-23 08:35:36 +02:00
Steve Durrheimer
e2f1f699b3
Add zsh completion for 'load' and 'save' image events
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-23 08:29:24 +02:00
Harald Albers
e3339a75d3
bash completion enhancements for docker {swarm,node,service}
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-22 20:23:46 +02:00
Alessandro Boch
c355e059cc
Add modules for secure overlay network to check-config.sh
...
Signed-off-by: Alessandro Boch <aboch@docker.com>
2016-06-22 10:51:13 -07:00
Sven Dowideit
a6f7167c0a
Merge pull request #23805 from albers/completion--cpu-shares--c
...
bash completion for `-c` alias to `--cpu-shares`
2016-06-21 21:19:06 +10:00
Sven Dowideit
5ba6b1e89c
Merge pull request #23804 from albers/completion-btrfs-min_space
...
bash completion for `docker daemon --storage-opt btrfs.min_space`
2016-06-21 21:18:49 +10:00
Sven Dowideit
a1eb6528eb
Merge pull request #23803 from albers/completion-run--storage-opt
...
bash completion for `docker {run,create} --storage-opt`
2016-06-21 21:18:32 +10:00
Sven Dowideit
38b07e7fa6
Merge pull request #23800 from albers/completion-events-load-save
...
bash completion for `load` and `save` image events
2016-06-21 21:18:16 +10:00
Sven Dowideit
d5939876be
Merge pull request #23799 from albers/completion-storage-driver-overlay2
...
bash completion for `docker daemon --storage-driver olverlay2`
2016-06-21 21:18:01 +10:00
Sven Dowideit
a7a0269624
Merge pull request #23798 from albers/completion--link-local-ip
...
bash completion for `docker {run,create,network connect} --link-local…
2016-06-21 21:17:37 +10:00
Harald Albers
79296b2770
bash completion for -c
alias to --cpu-shares
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-21 11:30:26 +02:00
Harald Albers
f693b99870
bash completion for docker daemon --storage-opt btrfs.min_space
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-21 11:11:11 +02:00
Harald Albers
7d2ffa00c0
bash completion for docker {run,create} --storage-opt
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-21 11:04:09 +02:00
Harald Albers
5334520bf0
bash completion for load
and save
image events
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-21 10:26:21 +02:00
Harald Albers
d96eeff194
bash completion for docker daemon --storage-driver olverlay2
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-21 10:19:07 +02:00
Harald Albers
98483f57ed
bash completion for docker {run,create,network connect} --link-local-ip
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-21 09:43:34 +02:00
Steve Durrheimer
8036fc794a
Add zsh completion for 'docker daemon --live-restore'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-21 08:31:28 +02:00
Harald Albers
e65f036e13
fix bash completion for docker {swarm,node}
subcommands
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-18 10:28:20 -07:00
Harald Albers
19753ec84d
correct sort order in new bash completions
...
The completion for the new `docker service`, `docker swarm` and
`docker node` command families were partly added in non-alphabetical
order.
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-18 09:54:44 -07:00
Mike Goelzer
5cf73a47f5
Add bash completion for docker service scale
...
Signed-off-by: Mike Goelzer <mike.goelzer@docker.com>
Conflicts:
contrib/completion/bash/docker
2016-06-18 09:27:06 -07:00
Sebastiaan van Stijn
2989e7b2a0
Merge pull request #23665 from albers/fix-completion-service
...
fix bash completion for `docker service` subcommands
2016-06-17 17:54:49 -07:00
Antonio Murdaca
e72b7ee425
Merge pull request #23664 from leonhartX/i23017
...
fix #23017 , add zsh completion for dockerd
2016-06-17 19:44:43 +02:00
Harald Albers
42f3b1f4ad
fix bash completion for docker service
subcommands
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-17 09:49:46 +02:00
Ke Xu
bd1fc1e5c2
fix #23017 , add zsh completion for dockerd
...
Signed-off-by: Ke Xu <leonhartx.k@gmail.com>
2016-06-17 16:16:13 +09:00
Harald Albers
dc2fc75d42
bash completion for docker swarm update --cert-expiry
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-17 08:49:06 +02:00
Michael Crosby
db435f526a
Set systemd KillMode
...
Change the kill mode to process so that systemd does not kill container
processes when the daemon is shutdown but only the docker daemon
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2016-06-16 11:46:04 -07:00
Arnaud Porterie (icecrime)
e6e1fd5d06
Make --dispatcher-heartbeat-period
a duration
...
Make `--dispatcher-heartbeat-period` a duration in `docker swarm
update`, allowing to express the value as "5s", "1h", etc.
Signed-off-by: Arnaud Porterie (icecrime) <arnaud.porterie@docker.com>
2016-06-14 18:10:49 -07:00
Mike Goelzer
35e2970b98
Update bash completion for Docker 1.12 CLI commands
...
Signed-off-by: Mike Goelzer <mike.goelzer@docker.com>
2016-06-14 12:57:40 -07:00
Kenfe-Mickael Laventure
6e9bf4d316
Add bash completion support for --runtime and --add-runtime
...
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2016-06-14 07:47:31 -07:00
Kenfe-Mickael Laventure
1a6ed50e1f
Add missing completion for --config-file
...
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2016-06-14 07:47:31 -07:00
Lei Jitang
74873f192a
Merge pull request #23506 from albers/completion-daemon---live-restore
...
bash completion for `docker daemon --live-restore`
2016-06-14 17:24:00 +08:00
Harald Albers
73882e8f83
bash completion for docker daemon --live-restore
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-14 09:14:25 +02:00
Dmitry Smirnov
546594eaaa
Fix syntax errors in bash-completion ( Closes : #23483 )
...
Signed-off-by: Dmitry Smirnov <onlyjob@member.fsf.org>
2016-06-13 19:12:31 +10:00
Brian Goff
aaef5297bf
Merge pull request #22152 from flixr/armhf-ubuntu-trusty-deb
...
build armhf deb for ubuntu-trusty
2016-06-12 16:27:54 -04:00
Steve Durrheimer
734260886c
Add zsh completion for 'docker run' healthcheck options
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-12 13:00:05 +02:00
Vincent Demeester
a29376dfd0
Merge pull request #23456 from sdurrheimer/zsh-completion-ps-filter-network
...
Add zsh completion for 'docker ps --filter=network'
2016-06-11 18:52:48 +02:00
Sebastiaan van Stijn
b133737cb7
Merge pull request #23455 from sdurrheimer/zsh-completion-events-filter-values
...
Add zsh completion for 'docker events --filter' values
2016-06-11 18:29:17 +02:00
Steve Durrheimer
b5498a8b0b
Add zsh completion for 'docker events --filter' values
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-11 17:02:26 +02:00
Steve Durrheimer
60c435e7d0
Add zsh completion for 'docker ps --filter=network'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-11 16:53:26 +02:00
Steve Durrheimer
654aaa055e
Add zsh completion for 'docker {create,run} --pid' values
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-11 15:30:27 +02:00
Felix Ruess
a229e1f4b7
build armhf deb for ubuntu-trusty
...
Signed-off-by: Felix Ruess <felix.ruess@roboception.de>
2016-06-09 14:06:19 +02:00
Harald Albers
337eaab5d1
bash completion for docker ps --filter network
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-07 12:44:17 -07:00
Vincent Demeester
4b2b5214a4
Merge pull request #23299 from albers/completion-dockerd-path
...
fix bash completion for dockerd invoked with path
2016-06-06 13:40:15 +02:00
Sebastiaan van Stijn
ab0c683f5d
Merge pull request #23295 from sdurrheimer/zsh-completion-search-limit
...
Add zsh completion for 'docker search --limit'
2016-06-06 11:46:57 +02:00
Harald Albers
e8c67e8d8d
fix bash completion for dockerd with path
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-06 10:01:15 +02:00
Vincent Demeester
3ac1787b7e
Merge pull request #23098 from capkurmagati/23097-fix-zsh-completion-docker-rm-f
...
fixes #23097 zsh completion on `docker rm -f`
2016-06-06 09:20:16 +02:00
Steve Durrheimer
41f2183f8a
Add zsh completion for 'docker search --limit'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-06-06 09:05:22 +02:00
Brian Goff
282067e83a
Merge pull request #23272 from thaJeztah/update-syntax
...
Update Dockerfile highlight/syntax definitions
2016-06-05 15:38:16 -04:00
Sebastiaan van Stijn
4cb71f8082
Update Dockerfile highlight definitions
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-06-05 17:45:21 +02:00
Harald Albers
9c9cbd2c0f
bash completion for detach events
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-05 08:41:58 -07:00
Vincent Demeester
5429f4ef61
Merge pull request #23239 from albers/completion-run-healthcheck
...
bash completion for `docker run` healthcheck options
2016-06-03 18:17:15 +02:00
Harald Albers
f738e6a732
bash completion for docker run
healthcheck options
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-03 17:04:04 +02:00
Harald Albers
4b5ccd7342
bash completion for docker search --limit
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-06-03 16:32:37 +02:00
Sebastiaan van Stijn
791f98290e
Merge pull request #22806 from errordeveloper/master
...
Remove MountFlags in systemd unit to allow shared mount propagation
2016-06-02 20:04:08 +02:00
Brian Goff
273ab8591e
Merge pull request #22867 from justincormack/checklimits
...
Begin a section in the check-config script to check limits
2016-06-01 20:42:54 -04:00
Vincent Demeester
09be7d9ee4
Merge pull request #23085 from icecrime/gitdm.config
...
Add gitdm configuration
2016-06-01 18:12:59 +02:00
Elan Ruusamäe
e2f1793b99
add script to make base image for PLD Linux
...
https://www.pld-linux.org/packages/docker
Signed-off-by: Elan Ruusamäe <glen@pld-linux.org>
2016-05-31 09:20:51 +03:00
Tianyi Wang
2d4bced30c
Fix zsh completion
...
- List all containers on `docker rm -f`
Signed-off-by: Tianyi Wang <capkurmagati@gmail.com>
2016-05-30 18:58:36 +09:00
Harald Albers
5f1c5b28a7
bash completion for dockerd
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-05-29 07:09:05 -07:00
Arnaud Porterie
bf6d52bba1
Add gitdm configuration
...
Update .mailmap and add gitdm configuration.
Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
2016-05-28 21:08:20 -07:00
Stefan Scherer
d59458c12d
Update golang 1.6.2
...
Signed-off-by: Stefan Scherer <scherer_stefan@icloud.com>
2016-05-27 23:00:05 +02:00
Stefan Scherer
46c61497a0
Build deb for raspbian-jessie
...
Signed-off-by: Stefan Scherer <scherer_stefan@icloud.com>
2016-05-27 22:54:50 +02:00
Alexander Morozov
9b0d385975
Merge pull request #22840 from runcom/go1.6
...
Upgrade to golang 1.6.2
2016-05-27 06:54:57 -07:00
Vincent Demeester
750e16f57c
Add before and since filter to images
...
Add support for two now filter on the `images` command : `before` and
`since`. They work the same as the one on the `ps` command but for
images.
$ docker images --filter before=myimage
# display all images older than myimage
$ docker images --filter since=myimage
# display all images younger than myimage
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-05-25 13:49:10 +02:00
Stefan Scherer
f32ccb080a
Update golang 1.6.2 for ARM
...
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2016-05-25 11:58:48 +02:00
Antonio Murdaca
40b21745cc
Upgrade to golang 1.6.2
...
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2016-05-25 11:58:48 +02:00
Harald Albers
c49d327406
bash completion for docker ps -f {before,since}
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-05-25 09:35:33 +02:00
Harald Albers
cc6a1b8bb3
bash completion for daemon events
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-05-24 17:19:03 +02:00
Ilya Dmitrichenko
2aee081cad
Remove MountFlags in systemd unit to allow shared mount propagation
...
Signed-off-by: Ilya Dmitrichenko <errordeveloper@gmail.com>
2016-05-24 12:51:31 +01:00
Steve Durrheimer
11da243273
Add zsh completion for 'docker images' filters
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-05-22 13:01:08 +02:00
Justin Cormack
4e2d98761d
Begin a section in the check-config script to check limits
...
Initially this checks the kernel's maxkeys setting which is
low in some older distribution kernels, such that only 200 containers
can be created, reported in #22865 .
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-05-20 16:05:25 -07:00
Fabrizio Soppelsa
e009ebdf4c
Add a --filter option to docker search
...
The filtering is made server-side, and the following filters are
supported:
* is-official (boolean)
* is-automated (boolean)
* has-stars (integer)
Signed-off-by: Fabrizio Soppelsa <fsoppelsa@mirantis.com>
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-05-20 13:41:28 +02:00
Mrunal Patel
fb43ef649b
Add support for --pid=container:<id>
...
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
2016-05-17 13:49:05 -04:00
Sebastiaan van Stijn
09cb57b773
Fix typo in zsh completion
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-05-17 13:38:46 +02:00
Qiang Huang
27d7b135d4
Update check_config for MEMCG_KMEM
...
CONFIG_MEMCG_KMEM is removed since 4.6, it's accounted by default
since 4.6, so it's merged to CONFIG_MEMCG.
Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
2016-05-16 13:55:24 +08:00
Sebastiaan van Stijn
fbf3741f0d
Merge pull request #22740 from sdurrheimer/zsh-completion-network-ls-filter-label
...
Add zsh completion for 'docker network ls --filter label'
2016-05-14 22:27:00 +02:00
Sebastiaan van Stijn
c80f926997
Merge pull request #22739 from sdurrheimer/zsh-completion-daemon-concurrent
...
Add zsh completion for 'docker daemon --max-concurrent-downloads --ma…
2016-05-14 22:25:59 +02:00
Steve Durrheimer
afca8a454a
Add zsh completion for 'docker network ls --filter label'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-05-14 19:38:39 +02:00
Steve Durrheimer
bf9a1d5027
Add zsh completion for 'docker daemon --max-concurrent-downloads --max-concurrent-uploads'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-05-14 19:20:20 +02:00
Steve Durrheimer
dcca0f6dd1
Add zsh completion for 'docker logs --details'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-05-14 19:13:01 +02:00
Sebastiaan van Stijn
a213a446d7
Merge pull request #22714 from albers/completion-logs--details
...
bash completion for `docker logs --details`
2016-05-13 14:37:45 +02:00
Harald Albers
d166c8fbb2
bash completion for docker logs --details
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-05-13 08:42:43 +02:00
Harald Albers
cc6bcaaddc
bash completion for docker daemon --max-concurrent-{down,up}load
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-05-13 08:25:53 +02:00
Arnaud Porterie
f7c79cdeae
Merge pull request #22455 from Anvil/bash-completion-failglob
...
docker bash completions fails when failglob is enabled
2016-05-11 13:08:48 -10:00
Arnaud Porterie
78e9f2e9e7
Merge pull request #22368 from tianon/wheezy-lts
...
Update contrib/mkimage/debootstrap to include wheezy-lts
2016-05-11 12:49:26 -10:00
Arnaud Porterie
bacce5ef4f
Merge pull request #22365 from dnephin/fix_selinux_for_dockerd
...
Update the binary name in docker-engine-selinux/docker.fc
2016-05-11 12:44:55 -10:00
Alexander Morozov
fd3a795a47
Merge pull request #22278 from runcom/fixies-dockerd
...
Fixies dockerd
2016-05-11 07:57:00 -07:00
Antonio Murdaca
1ac1b78b3a
contrib: init: use dockerd
...
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2016-05-11 11:00:11 +02:00
Kenfe-Mickael Laventure
6a033e617f
Allow changing wheezy deb builder backport mirror
...
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2016-05-09 09:10:30 -07:00
Kenfe-Mickael Laventure
05dec0b032
Fix rpm generation on oraclelinux-6
...
The uek kernel needs to be install first in order to get the correct
btrfs tools version.
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2016-05-05 12:12:49 -07:00
Tianon Gravi
084c72e760
Update contrib/mkimage/debootstrap to account for Debian LTS changes
...
See https://www.debian.org/News/2016/20160425 and https://wiki.debian.org/LTS/Using for more details.
> For Debian 7 "Wheezy" LTS there will be no requirement to add a separate wheezy-lts suite to your sources.list any more. In fact you will not notice the switch to LTS because after the official security support by the Debian Security Team ends, security updates will be provided via security.debian.org 's wheezy/updates.
Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
2016-05-04 08:39:45 -07:00
Sebastiaan van Stijn
9c52a04f38
Merge pull request #22446 from thaJeztah/add-daemon-reload
...
Add support for reloading daemon configuration through systemd
2016-05-04 12:38:40 +02:00
Vincent Demeester
2a6980c5cb
Merge pull request #22452 from cpuguy83/fix_zsh_completion_psformat
...
Make zsh completion work when ps output is custom
2016-05-02 17:39:46 +02:00
Damien Nadé
79490a6ad3
contrib/completion/bash/docker: _docker_docker: quoting __docker_to_extglob result to avoid failglob interference
...
Signed-off-by: Damien Nadé <github@livna.org>
2016-05-02 16:53:43 +02:00
Brian Goff
ba3f8a9fef
Make zsh completion work when ps output is custom
...
When `psFormat` is used in the docker client config json, if the output
is non-standard it breaks some of the completion handling for
containers.
This fixes that by ensuring that calls to `ps` use the default/standard
formatting by calling `docker ps --format 'table'`
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
2016-05-02 09:45:01 -04:00
Sebastiaan van Stijn
f74b856e1a
Add support for reloading daemon configuration through systemd
...
This adds support for reloading the docker daemon
(SIGHIUP) so that changes in '/etc/docker/daemon.json'
can be loaded at runtime by reloading the service
through systemd ('systemctl reload docker')
Before this change, systemd would output an error
that "reloading" is not supported for the docker
service;
systemctl reload docker
Failed to reload docker.service: Job type reload is not applicable for unit docker.service.
After this change, the docker daemon can be reloaded
through 'systemctl reload docker', which reloads
the configuration;
journalctl -f -u docker.service
May 02 03:49:20 testing systemd[1]: Reloading Docker Application Container Engine.
May 02 03:49:20 testing docker[28496]: time="2016-05-02T03:49:20.143964103-04:00" level=info msg="Got signal to reload configuration, reloading from: /etc/docker/daemon.json"
May 02 03:49:20 testing systemd[1]: Reloaded Docker Application Container Engine.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-05-02 10:27:07 +02:00
Steve Durrheimer
d6780c3190
Add zsh completion for 'docker network ls -f driver'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-04-30 13:07:03 +02:00
Vincent Demeester
7a56581297
Merge pull request #22319 from thaJeztah/network-driver-filter
...
Add "driver" filter for network ls
2016-04-30 10:38:10 +02:00
Steve Durrheimer
8a51f9511c
Add zsh completion for 'docker network ls -f {id,name,type}'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-04-29 22:38:10 +02:00
Sebastiaan van Stijn
23e418b6c9
Add "driver" filter for network ls
...
This add a new filter to 'docker network ls'
to allow filtering by driver-name.
Contrary to "ID" and "name" filters, this
filter only supports an *exact* match.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2016-04-29 16:22:26 +02:00
Brian Goff
717842fbde
Merge pull request #22370 from mlaventure/fix-experimental-builder
...
Allow specifying the apt mirror to use when generating deb packages
2016-04-28 16:26:29 -04:00
Kenfe-Mickael Laventure
d0a65a03e9
Allow specifying the apt mirror to use when generating deb packages
...
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2016-04-28 13:05:34 -07:00
Daniel Nephin
b9135646d6
Update the binary name in docker-engine-selinux/docker.fc.
...
Signed-off-by: Daniel Nephin <dnephin@docker.com>
2016-04-27 11:41:21 -04:00
Brian Goff
1521a41fc5
centos:7/OL:7 now includes libseccomp 2.2.1
...
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
2016-04-26 20:48:26 -04:00
Lei Jitang
66eb91463a
Merge pull request #22287 from hqhq/hq_add_blk_check
...
Add CONFIG_CFQ_GROUP_IOSCHED check
2016-04-25 20:15:31 +08:00
Qiang Huang
192387198d
Add CONFIG_CFQ_GROUP_IOSCHED check
...
blkio.weight depends on this config.
Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
2016-04-25 14:08:29 +08:00
Tibor Vass
4377a58c12
Merge pull request #22015 from endophage/pkcs11_debs
...
add pkcs11 build tag to deb and rpm builds
2016-04-22 13:29:44 -04:00
Ke Xu
da90fe0218
add zsh completion for 'docker {build,create,run} --disable-content-trust'
...
Signed-off-by: Ke Xu <leonhartx.k@gmail.com>
2016-04-21 16:06:09 +09:00
Chun Chen
b21d90c28f
Add docs about how to extend devicemapper thin pool
...
Signed-off-by: Chun Chen <ramichen@tencent.com>
2016-04-20 10:49:51 +08:00
David Lawrence
829d1883dc
add pkcs11 build tag to deb and rpm builds
...
Signed-off-by: David Lawrence <david.lawrence@docker.com> (github: endophage)
2016-04-13 17:55:50 -07:00
Tibor Vass
7268eb97bc
Bump Go version to 1.5.4/1.6.1 (security fix) ( #21978 )
...
Go 1.6.1 is for ppc64le only.
https://groups.google.com/forum/#!msg/golang-announce/9eqIHqaWvck/kXsfO0ogLAAJ
Dockerfile.armhf cannot currently be updated.
Signed-off-by: Tibor Vass <tibor@docker.com>
2016-04-13 11:22:48 -07:00
Dan Walsh
9caf7aeefd
Add support for setting sysctls
...
This patch will allow users to specify namespace specific "kernel parameters"
for running inside of a container.
Signed-off-by: Dan Walsh <dwalsh@redhat.com>
2016-04-12 13:37:31 -04:00
Tianon Gravi
c082dad637
Add "VXLAN" to check-config.sh
...
Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
2016-04-11 16:42:53 -07:00
Steve Durrheimer
7ad5438555
Add zsh completion for 'docker volume ls -f {dangling,driver,name}'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-04-10 12:52:33 +02:00
Steve Durrheimer
5534354996
Add zsh completion for '--log-opt syslog-format=rfc5424micro'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-04-10 11:11:12 +02:00
Steve Durrheimer
6e14ebd030
Add zsh completion for '--log-opt syslog-format'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-04-09 17:34:46 +02:00
Sebastiaan van Stijn
f832183e33
Merge pull request #21884 from albers/completion-volume-ls-filter
...
bash completion for `docker volume ls -f {driver,name}`
2016-04-08 14:33:09 -07:00
Harald Albers
3cf856ce0c
bash completion for docker volume ls -f {driver,name}
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-04-08 13:45:44 +02:00
Harald Albers
472030e9cc
bash completion for --log-opt syslog-format
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-04-08 13:19:25 +02:00
Vincent Demeester
4745656e18
Merge pull request #21645 from albers/completion-history--human
...
bash completion for `docker history --human`
2016-03-30 12:19:47 +02:00
Vincent Demeester
2f35c6b3fb
Merge pull request #21491 from pcarrier/pcarrier/wtf
...
docker.service: don't limit tasks
2016-03-30 11:08:15 +02:00
Harald Albers
a2dbf7626c
bash completion for docker history --human
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-03-29 21:56:24 -07:00
Sebastiaan van Stijn
7e63ed90aa
Merge pull request #21610 from albers/completion-no-new-privileges
...
bash completion for `docker {run,create} --security-opt no-new-privileges
2016-03-29 16:52:04 -07:00
Harald Albers
39b9b63e36
bash completions: Improve consistency for options with default=true
...
Completion of these options was not handled consistently.
Now all such options immediatly complete with =false appended.
Signed-off-by: Harald Albers <github@albersweb.de>
2016-03-29 10:24:45 -07:00
Harald Albers
e96d086afd
bash completion for docker {run,create} --security-opt no-new-privileges
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-03-29 09:59:04 +02:00
Vincent Demeester
e6aa40a017
Merge pull request #19367 from shishir-a412ed/rootfs_size_configurable_cli
...
CLI flag for docker create(run) to change block device size.
2016-03-29 08:52:54 +02:00
David Calavera
d7382c1fa3
Merge pull request #21577 from albers/completion-dm.min_free_space
...
bash completion for `dm.min_free_space`
2016-03-28 15:42:21 -07:00
David Calavera
d48b1c6de5
Merge pull request #21579 from albers/completion-run--userns
...
bash completion for `docker {run,create} --userns`
2016-03-28 11:31:55 -07:00
David Calavera
22ca91b084
Merge pull request #21580 from sdurrheimer/zsh-completion-create-run-userns
...
Add zsh completion for 'docker {create,run} --userns'
2016-03-28 11:31:39 -07:00
Harald Albers
020998e24c
fix bash completion for docker run --security-opt
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-03-28 08:07:28 -07:00
Shishir Mahajan
b16decfccf
CLI flag for docker create(run) to change block device size.
...
Signed-off-by: Shishir Mahajan <shishir.mahajan@redhat.com>
2016-03-28 10:05:18 -04:00
Harald Albers
62475684b9
bash completion for docker {run,create} --userns
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-03-28 06:47:33 -07:00
Steve Durrheimer
39d7ff233b
Add zsh completion for 'docker {create,run} --userns'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-28 15:39:27 +02:00
Steve Durrheimer
63b29eda68
Add zsh completion for 'docker daemon --containerd'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-28 14:40:56 +02:00
Harald Albers
eae4e84c66
bash completion for storage option dm.min_free_space
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-03-28 05:15:56 -07:00
Harald Albers
aeaba46c2c
bash completion for docker daemon --containerd
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-03-28 04:30:02 -07:00
Pierre Carrier
33a8ab29ed
docker.service: don't limit tasks
...
Signed-off-by: Pierre Carrier <pierre@meteor.com>
2016-03-27 04:02:34 -07:00
Steve Durrheimer
ff31f166f2
Add zsh completion for gelf-compression log driver options
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-27 11:31:04 +02:00
Vincent Demeester
1aa07d6f11
Merge pull request #21546 from sdurrheimer/zsh-completion-ps-filters
...
Add zsh completion for 'docker ps --filter' values
2016-03-27 10:22:50 +02:00
Vincent Demeester
49a73ca121
Merge pull request #21548 from sdurrheimer/zsh-completion-etwlogs-gcplogs-log-drivers
...
Add zsh completion for etwlogs and gcplogs log drivers
2016-03-27 10:18:57 +02:00
Sebastiaan van Stijn
d954186efb
Merge pull request #21542 from sdurrheimer/zsh-completion-journald-tag
...
Add zsh completion for journald tag opt
2016-03-26 18:04:53 -07:00
Sebastiaan van Stijn
a5dc6c3ca1
Merge pull request #21543 from sdurrheimer/zsh-completion-update-restart
...
Add zsh completion for 'docker update --restart'
2016-03-26 18:03:27 -07:00
Steve Durrheimer
b0235ffddd
Add zsh completion for 'docker {pull,push} --disable-content-trust'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-26 22:49:53 +01:00
Steve Durrheimer
ca3ff89e56
Add zsh completion for etwlogs and gcplogs log drivers
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-26 22:39:17 +01:00
Steve Durrheimer
f3a27a6fac
Add zsh completion for 'docker ps --filter' values
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-26 21:53:27 +01:00
Steve Durrheimer
ca2cca0255
Add zsh completion for 'docker update --restart'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-26 15:07:02 +01:00
Steve Durrheimer
93ffc2d954
Add zsh completion for journald tag opt
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-26 14:54:11 +01:00
David Calavera
8fabc9aee0
Merge pull request #21527 from sdurrheimer/zsh-completion-build-network-volume-label
...
Add zsh completion for 'docker {build, volume create, network create}…
2016-03-25 14:58:56 -07:00
Steve Durrheimer
5bfd29b9fb
Add zsh completion for 'docker {build, volume create, network create} --label'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-25 20:43:43 +01:00
Sebastiaan van Stijn
7512d3ce3b
Merge pull request #21516 from sdurrheimer/zsh-completion-logopt-fluentd
...
Add zsh completion for new fluentd log driver options
2016-03-25 11:39:33 -07:00
Steve Durrheimer
396ffa2faf
Add zsh completion for new fluentd log driver options
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-25 19:28:38 +01:00
David Calavera
4bd03fe71b
Merge pull request #21517 from sdurrheimer/zsh-completion-load-quiet
...
Add zsh completion for 'docker load -q --quiet'
2016-03-25 11:06:13 -07:00
David Calavera
aa7be04e52
Merge pull request #21520 from albers/completion-labels-everywhere
...
bash completion for labels on build, networks and volumes
2016-03-25 11:05:45 -07:00
Harald Albers
a2958aa18f
bash completion for labels on build, networks and volumes
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-03-25 10:56:04 -07:00
Steve Durrheimer
f8009d10bb
Add zsh completion for 'docker load -q --quiet'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
2016-03-25 18:36:45 +01:00
Harald Albers
06e357da35
bash completion for new fluentd log driver options
...
Signed-off-by: Harald Albers <github@albersweb.de>
2016-03-25 03:31:48 -07:00
David Calavera
3e0bd74a3d
Downgrade to Go 1.5.3.
...
To not hit the issue with the request Host header.
Signed-off-by: David Calavera <david.calavera@gmail.com>
2016-03-24 19:15:10 -04:00
Tibor Vass
ed25df9a07
Merge pull request #21387 from kencochrane/change_packages
...
Packaging changes required for new containerd binaries
2016-03-24 17:29:55 -04:00