yuexiao-wang
1917d3b958
add option and update the description
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2016-09-12 16:08:59 +08:00
Sven Dowideit
2cce7bf33a
Merge pull request #26306 from deployable/patch-1
...
Remote API documentation consistancy
2016-09-12 10:52:30 +10:00
Vincent Demeester
e6f76800f5
Merge pull request #26426 from sfsmithcha/carry_pry_25414
...
Carry pr 25414
2016-09-10 11:50:28 +02:00
Matt Hoyle
e0a552504e
Keep headings consistant in API documentation
...
The "Stream details" sections are currently a part of the Status codes list.
This change moves them out to the same level as other surrounding sections.
Use () for a paramaters
Remove query param from end point heading
Signed-off-by: Matt Hoyle <matt@deployable.co>
2016-09-10 12:27:41 +10:00
Charles Smith
e7e85c7e06
carries and closes 25414
...
Signed-off-by: Charles Smith <charles.smith@docker.com>
2016-09-09 15:57:53 -07:00
Richard Mathie
21a9c64b77
Update service_create.md
...
More info on endpoint setting, and service discovery on swarm mode overlay network.
Signed-off-by: Richard Mathie <richard.mathie@amey.co.uk>
2016-09-08 12:11:48 -07:00
Michael Crosby
061cc41759
Merge pull request #26224 from q384566678/test-zhou
...
Modify rename function use tips
2016-09-08 11:22:21 -07:00
Brian Goff
e96c0fafa0
Merge pull request #26228 from lixiaobing10051267/masterPluginRm
...
check inconsistant command in docs/reference/commandline
2016-09-08 11:09:18 -04:00
Charles Smith
6f0502b89b
Merge pull request #26156 from mstanleyjones/24905_swarm_noun_usage
...
Sanitize uses of Swarm as a proper and improper noun (Fixes #24905 )
2016-09-07 10:38:59 -07:00
Daniel Nephin
20607e2cc2
Merge pull request #26269 from yuexiao-wang/remove-option
...
Remove the option for the command service rm
2016-09-07 11:31:11 -04:00
Sven Dowideit
e73e37f112
Merge pull request #26218 from frosforever/fix_run_reference_typo
...
Correct typo in run reference docs that use the create command
2016-09-07 22:18:26 +10:00
Michael Crosby
0d03c060c7
Merge pull request #26212 from rhvgoyal/xfs-enospc
...
devmapper: Set xfs max_retries to 0 upon ENOSPC
2016-09-06 09:03:09 -07:00
Vincent Demeester
da763602af
Merge pull request #26307 from AkihiroSuda/fix-doc-26291
...
fix docs about `sudo docker login`
2016-09-06 17:47:46 +02:00
Misty Stanley-Jones
a2a0a03e2b
Add response to swarm/init example ( fixes #25625
...
Signed-off-by: Misty Stanley-Jones <misty@docker.com>
2016-09-06 08:39:53 -07:00
Yong Tang
b9e46235fa
Fix incorrect help output in docker network ls
...
As is raised in 26312, in `docker network ls`, the help output was
mistaken to `volume names`:
```
-q, --quiet Only display volume names
```
This fix changes the help output to:
```
-q, --quiet Only display network IDs
```
This fix also updates the documentation in:
`docs/reference/commandline/network_ls.md`
This fix fixes 26312.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2016-09-05 08:24:22 -07:00
Vincent Demeester
01fe5639bc
Merge pull request #26236 from yuexiao-wang/remove-h-option
...
Remove -h option for docker cli
2016-09-05 09:52:18 +02:00
Akihiro Suda
d6007b4db0
fix docs about sudo docker login
...
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
2016-09-05 04:44:18 +00:00
Vincent Demeester
fb8b6438f2
Add health status as action on events documentations
...
This was missing from the docs for 1.12.0.
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-09-04 18:01:57 +02:00
Akihiro Suda
aa47961682
update docs/reference/commandline/service_create.md
...
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
2016-09-02 09:59:20 +00:00
yuexiao-wang
1016cbb642
Remove the option for the command service rm
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2016-09-02 17:23:59 +08:00
yuexiao-wang
8ad8245ee3
Remove -h option for docker cli
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2016-09-02 11:46:49 +08:00
Vincent Demeester
b14f29dfbd
Merge pull request #26241 from YuPengZTE/devNote
...
The first letter of “docker“ is small
2016-09-01 20:53:07 +02:00
Vivek Goyal
4f0017b9ad
devmapper: Provide a knob dm.xfs_nospace_max_retries
...
When xfs filesystem is being used on top of thin pool, xfs can get ENOSPC
errors from thin pool when thin pool is full. As of now xfs retries the
IO and keeps on retrying and does not give up. This can result in container
application being stuck for a very long time. In fact I have seen instances
of unkillable processes. So that means once thin pool is full and process
gets stuck, container can't be stopped/killed either and only option left
seems to be power recycle of the box.
In another instance, writer did not block but failed after a while. But
when I tried to exit/stop the container, unmounting xfs hanged and only
thing I could do was power cycle the machine.
Now upstream kernel has committed patches where it allows user space to
customize user space behavior in case of errors. One of the knobs is
max_retries, which specifies how many times an IO should be retried
when ENOSPC is encountered.
This patch sets provides a tunable knob (dm.xfs_nospace_max_retries) so
that user can specify value for max_retries and tune xfs behavior. If
one sets this value to 0, xfs will not retry IO when ENOSPC error is
encountered. It will instead give up and shutdown filesystem.
This knob can be useful if one is running into unkillable
processes/containers issue on top of xfs.
Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
2016-09-01 11:38:09 -04:00
YuPengZTE
e0e62874bb
The first letter docker is small
2016-09-01 17:03:01 +08:00
zhouhao
61c8b3380f
Modify rename function usage
...
Signed-off-by: zhouhao <zhouhao@cn.fujitsu.com>
2016-09-01 14:48:02 +08:00
lixiaobing10051267
efe39448f7
check inconsistant command in docs/reference/commandline
...
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>
2016-09-01 12:21:52 +08:00
frosforever
84196adf3d
Correct typo in run reference docs that use the create command
...
Signed-off-by: Yosef Fertel <yfertel@gmail.com>
2016-08-31 18:09:43 -04:00
Justin Cormack
ad6f5a49d5
Merge pull request #26139 from yuexiao-wang/fix-link
...
Modify link for hub and registry
2016-08-31 16:37:50 +01:00
Vincent Demeester
ba23bf202a
Merge pull request #26182 from yuexiao-wang/add-options
...
Miss the options in some commands
2016-08-31 14:45:42 +02:00
Vincent Demeester
cf699ad427
Merge pull request #26192 from lixiaobing10051267/masterPluginInspect
...
make command "docker plugin inspect" complete
2016-08-31 14:42:03 +02:00
Vincent Demeester
37fd1416da
Merge pull request #26190 from lixiaobing10051267/masterNetworkCreate
...
provide actual command format for docker network create
2016-08-31 14:41:49 +02:00
lixiaobing10051267
d022bb2084
make command "docker plugin inspect" complete
...
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>
2016-08-31 19:59:23 +08:00
lixiaobing10051267
18a9600fb1
provide actual command format for docker network create
...
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>
2016-08-31 17:40:13 +08:00
yuexiao-wang
fdedc38f0c
Update description for docker plugin inspect
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2016-08-31 16:57:44 +08:00
yuexiao-wang
b8af6b579b
Miss the options in some commands
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2016-08-31 14:18:41 +08:00
Arnaud Porterie
ec82819cc9
Merge pull request #26140 from yuexiao-wang/modify-usage
...
Modify options for the command plugin install
2016-08-31 00:04:45 +00:00
Vincent Demeester
19aee54926
Merge pull request #26145 from allencloud/update-command-description
...
update command description
2016-08-30 22:16:57 +02:00
Misty Stanley-Jones
82304abd80
Sanitize uses of Swarm as a proper and improper noun
...
Fixes #24905
Signed-off-by: Misty Stanley-Jones <misty@docker.com>
2016-08-30 11:04:41 -07:00
allencloud
123ce0e4be
update command description
...
Signed-off-by: allencloud <allen.sun@daocloud.io>
2016-08-30 23:07:42 +08:00
Daniel Nephin
bb1d70da9a
Merge pull request #25214 from allencloud/make-node-ps-default-to-self
...
make node ps default to self in swarm node
2016-08-30 10:37:20 -04:00
Justin Cormack
644cb53b41
Merge pull request #26096 from ohmystack/fix/docs-dockerd
...
Add docs for "--containerd" in dockerd
2016-08-30 13:36:50 +01:00
yuexiao-wang
d08886618e
Modify options for the command plugin install
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2016-08-30 18:45:06 +08:00
allencloud
b13f5dfd13
make node ps default to self in swarm node
...
Signed-off-by: allencloud <allen.sun@daocloud.io>
2016-08-30 17:34:16 +08:00
yuexiao-wang
aedf95e640
Modify link for hub and registry
...
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
2016-08-30 16:37:03 +08:00
Kris-Mikael Krister
afcfa77dd8
Fix typo in builder.md
...
Signed-off-by: Kris-Mikael Krister <krismikael@protonmail.com>
2016-08-30 09:34:10 +02:00
ohmystack
cebb9543e1
Add docs for "--containerd" in dockerd
...
Signed-off-by: ohmystack <jiangjun1990@gmail.com>
2016-08-30 10:49:39 +08:00
Brian Goff
d09c04a667
Merge pull request #25317 from yongtang/25304-docker-service-create-group
...
Support `--group` in `docker service create`
2016-08-29 10:27:31 -04:00
Vincent Demeester
bf0077c138
Merge pull request #25990 from vieux/plugin_inspect
...
add -f to plugin inspect
2016-08-28 17:03:40 +02:00
Yong Tang
b31969ee36
Support --group-add
and --group-rm
in docker service create/update
...
This fix tries to address the issue raised in 25304 to support
`--group-add` and `--group-rm` in `docker service create`.
This fix adds `--group-add` to `docker service create` and `docker service update`,
adds `--group-rm` to `docker service update`.
This fix updates docs for `docker service create` and `docker service update`:
1. Add `--group-add` to `docker service create` and `docker service update`
2. Add `--group-rm` to `docker service update`
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2016-08-27 11:54:05 -07:00
Vincent Demeester
2cec66d0f5
Merge pull request #25828 from yuexiao-wang/clean-docs
...
clean up the run.md in reference
2016-08-27 14:50:47 +02:00