fad60a834e
fix storage driver options in man page
...
Signed-off-by: Zhu Guihua <zhugh.fnst@cn.fujitsu.com >
2017-06-02 00:07:29 +00:00
623082a1eb
Update RestartPolicy of container
...
Add `--restart` flag for `update` command, so we can change restart
policy for a container no matter it's running or stopped.
Signed-off-by: Zhang Wei <zhangwei555@huawei.com >
2017-06-02 00:07:29 +00:00
776757ac28
Fix some flaws in docs
...
Signed-off-by: Jian Zhang <zhangjian.fnst@cn.fujitsu.com >
2017-06-02 00:07:29 +00:00
7eed2da516
Document .Names format placeholder in docker-ps man page, fixes #20503 .
...
Signed-off-by: Andrew Macpherson <hopscotch23@gmail.com >
2017-06-02 00:07:29 +00:00
15eb38dfb1
Invoke ReloadConfiguration on network controller
...
- It reverts fa163f5619bb01cabca1c21 plus a small change
in order to allow passing the global scope datastore
to libnetwork after damon boot.
Signed-off-by: Alessandro Boch <aboch@docker.com >
2017-06-02 00:07:29 +00:00
79a3c42030
add a section to each volume page
...
Signed-off-by: ozlerhakan <hakan.ozler@kodcu.com >
2017-06-02 00:07:29 +00:00
65c94a34be
Add docs for --ipv6 option, also add --internal as appropriate
...
Signed-off-by: Aidan Hobson Sayers <aidanhs@cantab.net >
2017-06-02 00:07:29 +00:00
c7b4d1c449
Fix docs
...
Fix wrong descriptions in docs
Signed-off-by: Zhang Wei <zhangwei555@huawei.com >
2017-06-02 00:07:29 +00:00
56965a4d1d
Windows: Add ETW logging driver plug-in
...
Signed-off-by: Cedric Davies <cedricda@microsoft.com >
2017-06-02 00:07:29 +00:00
e56ee5769c
add missing trailing slash in ADD and COPY /absoluteDir examples. According to the specs they are mandatory.
...
Signed-off-by: Bastiaan Bakker <bbakker@xebia.com >
2017-06-02 00:07:29 +00:00
cb1279e542
Expose docker's root directory by default as part of docker info.
...
Signed-off-by: Vishnu kannan <vishnuk@google.com >
2017-06-02 00:07:29 +00:00
3969f77c86
Fixing mismatched network name.
...
Using `my-net` to be consistent with:
https://docs.docker.com/engine/reference/run/
Signed-off-by: Robert Wallis <smilingrob@gmail.com >
2017-06-02 00:07:29 +00:00
483c30a698
Fish completion lists all containers on "docker rm -f"
...
Signed-off-by: Frederik Nordahl Jul Sabroe <frederikns@gmail.com >
2017-06-02 00:07:29 +00:00
c30d9d2fff
fix common misspell
...
Signed-off-by: Victor Vieux <vieux@docker.com >
2017-06-02 00:07:28 +00:00
91d0d25ee4
update cap-add docs for seccomp
...
Signed-off-by: Jessica Frazelle <acidburn@docker.com >
2017-06-02 00:07:28 +00:00
7c85fb1665
Improve usage details on overriding USER command in Docker run reference page
...
Signed-off-by: Sian Lerk Lau <kiawin@gmail.com >
2017-06-02 00:07:28 +00:00
a015293ff7
Remove "--group-add dbus" from busybox example (no dbus group in busybox anymore)
...
Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com >
2017-06-02 00:07:28 +00:00
680de96eb6
Before and since filters documentation
...
Signed-off-by: Tomasz Kopczynski <tomek@kopczynski.net.pl >
2017-06-02 00:07:28 +00:00
a26c02199d
Make it clear that env vars must be simple
...
Closes #20169
Signed-off-by: Doug Davis <dug@us.ibm.com >
2017-06-02 00:07:28 +00:00
fcad8ce206
Improve key specific bash subcompletions
...
The obscure `case "${words[$cword-2]}$prev=" in` idiom is no
longer used for key specific completions in options with map values.
The `__docker_map_key_of_current_option()` function does a much
better job.
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:07:28 +00:00
904481becd
Check key specific bash subcompletions first
...
This is a refactoring in preparation of cleaning up the handling
of key specific subcompletions.
The new `__docker_map_key_of_current_option()` function will be used
instead of the `__docker_map_key_of_current_option()` idiom in the
following commit.
As this function is very specific, checks using it should be executed
before those checking for `$prev`.
This commit just moves the checks without any modification.
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:07:28 +00:00
a9dd907004
Add Horcrux volume plugin to plugins.md
...
Signed-off-by: Muthukumar R <muthur@gmail.com >
2017-06-02 00:07:28 +00:00
a33942adf2
Adding --format= flag
...
Signed-off-by: Evan Allrich <evan@unguku.com >
2017-06-02 00:07:28 +00:00
aa46699081
Fix mention of at sign in docs
...
The at sign (`@`) was being referred to in the documentation as an
ampersand (`&`).
Signed-off-by: Tom X. Tobin <tomxtobin@tomxtobin.com >
2017-06-02 00:07:28 +00:00
505e1673d6
Add missing debug client mode info in docs.
...
Signed-off-by: David Calavera <david.calavera@gmail.com >
2017-06-02 00:07:28 +00:00
c1c6c3fe80
Fix typo in config-json man page
...
In the NAME section: "confg.json" -> "config.json"
Signed-off-by: Tom X. Tobin <tomxtobin@tomxtobin.com >
2017-06-02 00:07:28 +00:00
355a190423
Display internal flag on network inspect
...
Also adds internal network tests for bridge network
Signed-off-by: Chun Chen <ramichen@tencent.com >
2017-06-02 00:07:28 +00:00
3dd7289df6
Add some basic bash completion for seccomp values
...
Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com >
2017-06-02 00:07:28 +00:00
bb1e32b5e1
Add Kuryr Network Plugin to the docs
...
Signed-off-by: Mohammad Banikazemi <mb@us.ibm.com >
2017-06-02 00:07:28 +00:00
494ae5e825
Add powershell completion support
...
Initial version of powershell tab completion. It completes
commands and container names.
Signed-off-by: Sam Neirinck <sam@samneirinck.com >
2017-06-02 00:07:28 +00:00
f367aeadf3
Add note about legacy links
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2017-06-02 00:07:28 +00:00
361097ab17
Correct old virtual size
...
In new content addressable model, image no longer
have virtual size column, it is now 'size'. So we
need to update related docs about them.
Signed-off-by: Kai Qiang Wu(Kennan) <wkqwu@cn.ibm.com >
2017-06-02 00:07:27 +00:00
1a10df30ce
Allow disabling of colored Docker logs via daemon flag.
...
Signed-off-by: Vincent Woo <me@vincentwoo.com >
Signed-off-by: David Calavera <david.calavera@gmail.com >
2017-06-02 00:07:27 +00:00
e8ba17c379
Add docker-volume-ipfs plugin to the list.
...
Signed-off-by: Vincent Demeester <vincent@sbr.pm >
2017-06-02 00:07:27 +00:00
17cba03948
Added link to Quobyte's volume plugin.
...
Signed-off-by: Felix Hupfeld <felix@quobyte.com >
2017-06-02 00:07:27 +00:00
235927da80
change 'host:port' to host:port
...
Signed-off-by: Gang Qiao <qiaohai8866@gmail.com >
2017-06-02 00:07:27 +00:00
6f24713ba0
Fix typo
...
Signed-off-by: Prayag Verma <prayag.verma@gmail.com >
2017-06-02 00:07:27 +00:00
6a0e2f700a
Change container name to id as actual results
...
Signed-off-by: Wen Cheng Ma <wenchma@cn.ibm.com >
2017-06-02 00:07:27 +00:00
5420ca8cde
update bash completions for push and pull
...
Signed-off-by: Jessica Frazelle <acidburn@docker.com >
2017-06-02 00:07:27 +00:00
49347e571c
Improve bash completion for users and groups
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:07:27 +00:00
437b2748c2
bash completion for journald tag support
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:07:27 +00:00
27686523be
docs: document options for default network driver
...
Fixes issue #18410
Signed-off-by: Wen Cheng Ma <wenchma@cn.ibm.com >
2017-06-02 00:07:27 +00:00
c1c803cbe8
Improve wording about re-assigning IP addresses
...
Signed-off-by: Bryan Boreham <bjboreham@gmail.com >
2017-06-02 00:07:27 +00:00
5d1e84419a
Improve bash completion for docker volume ls -f dangling
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:07:27 +00:00
0c473c9e9c
Let bash completion for docker network rm only complete custom networks
...
Signed-off-by: Harald Albers <github@albersweb.de >
2017-06-02 00:07:27 +00:00
d4fd7fd13b
Fix docs for tmpfs (pr 19688)
...
Underlying files are no longer copied to the tmpfs.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2017-06-02 00:07:27 +00:00
045907a71c
Remove cluster storage advertise from reload.
...
Because libnetwork won't really send container information to the new
storage anyways.
Signed-off-by: David Calavera <david.calavera@gmail.com >
2017-06-02 00:07:27 +00:00
9796beeedb
Move tar copy-up for tmpfs mounts
...
We cannot rely on the tar command for this type of operation because tar
versions, flags, and functionality can very from distro to distro.
Since this is in the container execution path it is not safe to have
this as a dependency from dockers POV where the user cannot change the
fact that docker is adding these pre and post mount commands.
Signed-off-by: Michael Crosby <crosbymichael@gmail.com >
2017-06-02 00:07:26 +00:00
7910f01804
Creating Engine specific menu
...
Fixing the links
Updating with Seb's comments
Adding weight
Fixing the engine aliases
Updating after Arun pushed
Removing empty file
Signed-off-by: Mary Anthony <mary@docker.com >
2017-06-02 00:07:26 +00:00
0441148c7d
Fix bash completion for docker volume ls --dangling=false.
...
Signed-off-by: David Calavera <david.calavera@gmail.com >
2017-06-02 00:07:26 +00:00