John Howard and Tibor Vass
e0c5156248
Windows: Support credential specs
...
Signed-off-by: John Howard <jhoward@microsoft.com >
Upstream-commit: 78cc1b2b6a
Component: cli
2017-06-02 00:10:12 +00:00
Antonio Murdaca and Tibor Vass
95af09cc49
daemon: add --userland-proxy-path flag
...
Signed-off-by: Antonio Murdaca <runcom@redhat.com >
Upstream-commit: e9cb71acbb
Component: cli
2017-06-02 00:10:12 +00:00
Steve Durrheimer and Tibor Vass
135616b0a5
Add zsh completion for 'dockerd --init-path'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: 9014b21a61
Component: cli
2017-06-02 00:10:12 +00:00
Paul Kehrer and Tibor Vass
1624d67c67
Add support for compressing build context during image build
...
When sending a build context to a remote server it may be
(significantly) advantageous to compress the build context. This commit
adds support for gz compression when constructing a build context
using a command like "docker build --compress ."
Signed-off-by: Paul Kehrer <paul.l.kehrer@gmail.com >
Upstream-commit: 9c85295b1c
Component: cli
2017-06-02 00:10:12 +00:00
Laura Frank and Tibor Vass
57706c65b4
Update readme link to binary installation instructions
...
Signed-off-by: Laura Frank <ljfrank@gmail.com >
Upstream-commit: 454f365dfe
Component: cli
2017-06-02 00:10:12 +00:00
Harald Albers and Tibor Vass
db2f2898df
Add support for multiple nodes in bash completion for docker node ps
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 62e87d4996
Component: cli
2017-06-02 00:10:12 +00:00
Harald Albers and Tibor Vass
5287c26318
Add bash completion for dockerd --init-path
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 3171c7b6e7
Component: cli
2017-06-02 00:10:12 +00:00
Kenfe-Mickael Laventure and Tibor Vass
86244a53b9
Add documentation for container, volume, image and system prune subcommands
...
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com >
Upstream-commit: 4705d82098
Component: cli
2017-06-02 00:10:12 +00:00
Yong Tang and Tibor Vass
6eecb8f649
Update docs for node filter of docker service ps
...
As is specified in 26964, it is possible to specify
a filter based on the node name or node ID.
This fix updates the related docs for that.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
Upstream-commit: 82e697e5ec
Component: cli
2017-06-02 00:10:12 +00:00
Vincent Demeester and Tibor Vass
23796877c1
Add a new "is-task" ps filter
...
This makes it easier to list containers that are part of a task
(swarm mode) and those who are not.
Signed-off-by: Vincent Demeester <vincent@sbr.pm >
Upstream-commit: cd547751df
Component: cli
2017-06-02 00:10:12 +00:00
Misty Stanley-Jones and Tibor Vass
1062069cf3
Fix link to non-existent file
...
Signed-off-by: Misty Stanley-Jones <misty@docker.com >
Upstream-commit: 247a2f112b
Component: cli
2017-06-02 00:10:12 +00:00
Antonio Murdaca and Tibor Vass
8aed0c9e35
configure docker-init binary path
...
Signed-off-by: Antonio Murdaca <runcom@redhat.com >
Upstream-commit: c17012948e
Component: cli
2017-06-02 00:10:12 +00:00
Yong Tang and Tibor Vass
de4bcf1050
Update docs for service ps
...
This fix updates docs for `service ps` as now the TASK ID part has been
removed.
Also, this fix fixes several incorrect sample output.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
Upstream-commit: d0134a5f75
Component: cli
2017-06-02 00:10:12 +00:00
Sebastiaan van Stijn and Tibor Vass
f5b7d83657
Fix incorrect aux-address examples and test
...
The (host)name for aux-addresses should
be unique, otherwise later values overwrite
earlier values.
Before this change, the example command
would send this API request;
{
"Attachable": false,
"CheckDuplicate": true,
"Driver": "overlay",
"EnableIPv6": false,
"IPAM": {
"Config": [
{
"Gateway": "192.168.0.100",
"IPRange": "192.168.1.0/24",
"Subnet": "192.168.0.0/16"
},
{
"AuxiliaryAddresses": {
"a": "192.170.1.5",
"b": "192.170.1.6"
},
"Gateway": "192.170.0.100",
"Subnet": "192.170.0.0/16"
}
],
"Driver": "default",
"Options": {
}
},
"Internal": false,
"Labels": {
},
"Name": "my-multihost-network",
"Options": {
}
}
After this change, the request looks
like this (all aux-addresses preserved);
{
"Attachable": false,
"CheckDuplicate": true,
"Driver": "overlay",
"EnableIPv6": false,
"IPAM": {
"Config": [
{
"AuxiliaryAddresses": {
"my-router": "192.168.1.5",
"my-switch": "192.168.1.6"
},
"Gateway": "192.168.0.100",
"IPRange": "192.168.1.0/24",
"Subnet": "192.168.0.0/16"
},
{
"AuxiliaryAddresses": {
"my-printer": "192.170.1.5",
"my-nas": "192.170.1.6"
},
"Gateway": "192.170.0.100",
"Subnet": "192.170.0.0/16"
}
],
"Driver": "default",
"Options": {
}
},
"Internal": false,
"Labels": {
},
"Name": "my-multihost-network",
"Options": {
}
}
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: 676773a780
Component: cli
2017-06-02 00:10:12 +00:00
Harald Albers and Tibor Vass
61649df81a
Fix bash completion for docker logs --since
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: ee85efb76d
Component: cli
2017-06-02 00:10:12 +00:00
John Howard and Tibor Vass
9e4af04ffc
Add isolation to info
...
Signed-off-by: John Howard <jhoward@microsoft.com >
Upstream-commit: 21171be26e
Component: cli
2017-06-02 00:10:12 +00:00
allencloud and Tibor Vass
e42b1700b3
move mcvlan out of experimental docs
...
Signed-off-by: allencloud <allen.sun@daocloud.io >
Upstream-commit: 6fe8c73b60
Component: cli
2017-06-02 00:10:11 +00:00
allencloud and Tibor Vass
416496941a
add endpoint mode in service pretty
...
Signed-off-by: allencloud <allen.sun@daocloud.io >
Upstream-commit: 1c60ac11d6
Component: cli
2017-06-02 00:10:11 +00:00
Akihiro Suda and Tibor Vass
150f6a3e23
add docker stack ls
...
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp >
Upstream-commit: 268c22d77b
Component: cli
2017-06-02 00:10:11 +00:00
Sebastiaan van Stijn and Tibor Vass
363cd6894d
Update man page for dm.xfs_nospace_max_retries
...
This option was added through commit
0d03c060c7e6800e60833c4462b917ee9b081440,
but didn't update the man page.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: 1f015b1700
Component: cli
2017-06-02 00:10:11 +00:00
Tõnis Tiigi and Tibor Vass
a29051ebb7
Implement build cache based on history array
...
Based on work by KJ Tsanaktsidis
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com >
Signed-off-by: KJ Tsanaktsidis <kjtsanaktsidis@gmail.com >
Upstream-commit: 1a8bdcd36f
Component: cli
2017-06-02 00:10:11 +00:00
Steve Durrheimer and Tibor Vass
f2dbfd6f6f
Add zsh completion for 'docker stats --format'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: bed270a507
Component: cli
2017-06-02 00:10:11 +00:00
Steve Durrheimer and Tibor Vass
3c59f5a59d
Add zsh completion for multi-nodes 'node ps'
...
Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com >
Upstream-commit: 365e71d868
Component: cli
2017-06-02 00:10:11 +00:00
Boaz Shuster and Tibor Vass
7830dc37a4
Add documentation for docker stats --format
...
Signed-off-by: Boaz Shuster <ripcurld.github@gmail.com >
Upstream-commit: 6f4c4e466b
Component: cli
2017-06-02 00:10:11 +00:00
allencloud and Tibor Vass
c94103b0e3
change-code-and-fix-docs-about-checkpoint
...
Signed-off-by: allencloud <allen.sun@daocloud.io >
Upstream-commit: fadc2868b1
Component: cli
2017-06-02 00:10:11 +00:00
Sebastiaan van Stijn and Tibor Vass
0e2dd2dfb3
Deprecate "daemon" subcommand
...
The daemon is in a separate (dockerd) binary
since docker 1.12, so should no longer be
used.
This marks the command as deprecated, and
adds it to the deprecated features list.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: 9f22887e06
Component: cli
2017-06-02 00:10:11 +00:00
Yong Tang and Tibor Vass
b82795e935
Update documentation and change log to include the preliminary validation of dockerfile.
...
This commit updates documentation and change log to include
the preliminary validation of the dockerfile before instructions
in dockerfile is run one-by-one.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com >
Upstream-commit: 4785157d54
Component: cli
2017-06-02 00:10:11 +00:00
YuPengZTE and Tibor Vass
59ce95b373
Del the extra dot
...
Signed-off-by: YuPengZTE <yu.peng36@zte.com.cn >
Upstream-commit: 129cd0b901
Component: cli
2017-06-02 00:10:11 +00:00
allencloud and Tibor Vass
21031d11ed
support docker node ps multiNodes
...
Signed-off-by: allencloud <allen.sun@daocloud.io >
Upstream-commit: 47e0458ffb
Component: cli
2017-06-02 00:10:11 +00:00
lixiaobing10051267 and Tibor Vass
87991c341e
Labels info ommitted while inspecting self-defined network
...
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn >
Upstream-commit: a179b5f518
Component: cli
2017-06-02 00:10:11 +00:00
Misty Stanley-Jones and Tibor Vass
0821200f3b
Clarify usage of --force when used on a swarm manager
...
Fixes #26125
Signed-off-by: Misty Stanley-Jones <misty@docker.com >
Upstream-commit: 088cfc36de
Component: cli
2017-06-02 00:10:11 +00:00
Harald Albers and Tibor Vass
dadc5cd030
Add bash completion for docker stats --format
...
Signed-off-by: Harald Albers <github@albersweb.de >
Upstream-commit: 8121d5a885
Component: cli
2017-06-02 00:10:11 +00:00
Jeff Silberman and Tibor Vass
6ec6ab7600
Add Portworx Volume Plugin Description
...
Signed-off-by: Jeff Silberman <jsilberm@gmail.com >
Upstream-commit: 5790fa5793
Component: cli
2017-06-02 00:10:11 +00:00
Akihiro Suda and Tibor Vass
c1233b3b66
fix the man page and zsh completion for docker images
...
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp >
Upstream-commit: a64a1aa0ae
Component: cli
2017-06-02 00:10:11 +00:00
Brian Goff and Tibor Vass
8d024268f5
Add formatter for service inspect
...
Allows the user to use `pretty` as the format string.
This enables users to put custom format options into their CLI config
just like is supported for `docker ps` and `docker images`
Signed-off-by: Brian Goff <cpuguy83@gmail.com >
Upstream-commit: 347ce7aad3
Component: cli
2017-06-02 00:10:11 +00:00
yuexiao-wang and Tibor Vass
e5821e747b
Update on index refernce documentation
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
Upstream-commit: b2dc10a653
Component: cli
2017-06-02 00:10:10 +00:00
yuexiao-wang and Tibor Vass
dcf229693f
add option and update the description
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
Upstream-commit: d0e704b31d
Component: cli
2017-06-02 00:10:10 +00:00
Michael Crosby and Tibor Vass
66eb1dbaa1
Add init process for zombie fighting
...
This adds a small C binary for fighting zombies. It is mounted under
`/dev/init` and is prepended to the args specified by the user. You
enable it via a daemon flag, `dockerd --init`, as it is disable by
default for backwards compat.
You can also override the daemon option or specify this on a per
container basis with `docker run --init=true|false`.
You can test this by running a process like this as the pid 1 in a
container and see the extra zombie that appears in the container as it
is running.
```c
int main(int argc, char ** argv) {
pid_t pid = fork();
if (pid == 0) {
pid = fork();
if (pid == 0) {
exit(0);
}
sleep(3);
exit(0);
}
printf("got pid %d and exited\n", pid);
sleep(20);
}
```
Signed-off-by: Michael Crosby <crosbymichael@gmail.com >
Upstream-commit: d72deed554
Component: cli
2017-06-02 00:10:10 +00:00
Akihiro Suda and Tibor Vass
c0006d5967
add docker events --format
...
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp >
Upstream-commit: 71e220fc11
Component: cli
2017-06-02 00:10:10 +00:00
Sebastiaan van Stijn and Tibor Vass
7f53df54e5
Fix Markdown formatting and missing prompt in service create
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: efe94b9d92
Component: cli
2017-06-02 00:10:10 +00:00
Misty Stanley-Jones and Tibor Vass
8f9d913e06
Misty's edits and additions
...
Signed-off-by: Misty Stanley-Jones <misty@docker.com >
(cherry picked from commit 3de7d725137ee1620ae2050e65ace4990a3af87e)
Upstream-commit: b3341fb7af
Component: cli
2017-06-02 00:10:10 +00:00
Sebastiaan van Stijn and Tibor Vass
b97b39887c
Add --mount syntax documentation to CLI reference
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: 060fd9fa5c
Component: cli
2017-06-02 00:10:10 +00:00
yuexiao-wang and Tibor Vass
2c74338ca9
fix typo for docs reference
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn >
Upstream-commit: 20463c7b18
Component: cli
2017-06-02 00:10:10 +00:00
John Howard and Tibor Vass
efc6a5a84c
Windows: stats support
...
Signed-off-by: John Howard <jhoward@microsoft.com >
Upstream-commit: f7b0c9b472
Component: cli
2017-06-02 00:10:10 +00:00
Alessandro Boch and Tibor Vass
22300ed040
Fix mtu option in documentation
...
Signed-off-by: Alessandro Boch <aboch@docker.com >
Upstream-commit: f9832ceac0
Component: cli
2017-06-02 00:10:10 +00:00
Josh Bodah and Tibor Vass
3fc85d0d86
Remove extra paren in run --link docs
...
Signed-off-by: Josh Bodah <jb3689@yahoo.com >
Upstream-commit: 622f3bf19f
Component: cli
2017-06-02 00:10:10 +00:00
Denis Gladkikh and Tibor Vass
2e3994446e
Splunk Logging Driver performance improvements
...
New driver options:
- `splunk-gzip` - gzip compress all requests to Splunk HEC
(enabled by default)
- `splunk-gzip-level` - change compression level.
Messages are sent in batches by 1000, with frequency of 5 seconds.
Maximum buffer is 10,000 events. If HEC will not be available, Splunk
Logging Driver will keep retrying while it can hold messages in buffer.
Added unit tests for driver.
Signed-off-by: Denis Gladkikh <denis@gladkikh.email >
Upstream-commit: db4e32d39e
Component: cli
2017-06-02 00:10:10 +00:00
Sebastiaan van Stijn and Tibor Vass
3c7db173b2
Use "sudo" for dockerd examples
...
Because we standardize on using a non-privileged
prompt (`$`) instead of `#`, replacing the
examples to use `sudo` instead to indicate
this has to be run as root.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: 36ffab578f
Component: cli
2017-06-02 00:10:10 +00:00
Sebastiaan van Stijn and Tibor Vass
6b6c8356b7
Add link to logging drivers reference
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: e3279502d0
Component: cli
2017-06-02 00:10:10 +00:00
Sebastiaan van Stijn and Tibor Vass
461e529d7a
Synchronize push reference with man page
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
Upstream-commit: 7d50b656d4
Component: cli
2017-06-02 00:10:10 +00:00