Commit Graph

1259 Commits

Author SHA1 Message Date
Euan T 53e2478599 Fix indentation of Python example (#5290) 2017-11-13 11:55:41 -08:00
Misty Stanley-Jones b89bc433d3
Remove extra slash (#5294) 2017-11-13 11:52:49 -08:00
John Stephens eb317c952a Fix PowerShell escaping and update for DockerProvider (#4721)
Signed-off-by: John Stephens <johnstep@docker.com>
2017-11-10 15:52:59 -08:00
Misty Stanley-Jones 60286e718b
Clarify where signing and verification happen (#5149) 2017-11-10 15:26:35 -08:00
vkalik 21642e926c Example overlay IPs consistency (#5220) 2017-11-10 14:09:21 -08:00
Bret Fisher 06e64aaefe add placement pref note about null labels (#5250) 2017-11-10 14:05:34 -08:00
Michael Friis ee14ae5e5c remove note that's no longer accurate (#5248) 2017-11-10 11:36:17 -08:00
Paul Schulz 6040f5f23f Add detail on how to allow hosts to communicate via macvlan. (#5252) 2017-11-10 11:35:22 -08:00
Misty Stanley-Jones 8d1a1fcb12
Remove unclear content not meant for end users (#5278) 2017-11-10 10:50:08 -08:00
Xinfeng Liu 7ec947b877 fix "virtual" explanation for "docker ps -s" (#5273) 2017-11-10 09:24:51 -08:00
Misty Stanley-Jones a29b3744bc
Fix info about bip and fixed-cidr keys (#5268) 2017-11-09 16:18:02 -08:00
Michael Friis 6ccbd7ffb9 add ee preview (#5239) 2017-11-09 13:11:46 -08:00
Misty Stanley-Jones 8d446fd3eb
Clarify note about services running in host mode (#5265) 2017-11-09 11:54:11 -08:00
Misty Stanley-Jones a10715ab8e
Use correct syntax for localhost for mac / win (#5264) 2017-11-09 11:17:42 -08:00
Jim Armstrong 794456dccf Update work-with-networks.md (#5259)
larifies that the IP address used for binding should be an actual IP on the user's host, and not literally 172.23.0.1
2017-11-09 10:12:52 -08:00
Peter Wen a998ff1039 Update volumes.md
Fix bind-mounts link.
2017-11-06 18:05:19 -08:00
Misty Stanley-Jones d2091304ee
Document how to disable the default bridge (#5158) 2017-11-06 14:35:12 -08:00
Misty Stanley-Jones 8aee9fe189
Improvements to EE install for SLES (#5097) 2017-11-06 14:34:26 -08:00
Misty Stanley-Jones 91e75c3871
Add content about antivirus (#5152) 2017-11-06 14:32:08 -08:00
Misty Stanley-Jones cfd10052b9
Link to info about privileged containers (#5221) 2017-11-06 14:31:21 -08:00
Misty Stanley-Jones f9fcaac442
Add info about selinux limitations for IBM Z (#5222)
* Add info about selinux limitations for IBM Z

* Fix liquid error
2017-11-06 14:30:51 -08:00
Misty Stanley-Jones a15705ad87
Add caveats about the hosts entry in daemon.json (#5223) 2017-11-06 14:28:42 -08:00
Jim Galasyn db0f879883
Tweak step for re-installing UCP (#5216)
* Add a step for re-installing UCP
2017-11-03 15:50:45 -07:00
Misty Stanley-Jones e9fa593562 Add info about network size limits for swarm mode 2017-11-02 15:42:41 -07:00
Joao Fernandes 9598524ad8
Add line breaks to code snippets (#5166) 2017-10-30 16:59:11 -07:00
Victoria Bialas 81270cbd7d
added clarification to swarm configs and stack deploy topic (#5159)
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-10-30 14:20:40 -07:00
Joao Fernandes ed03eaa108
Update Windows Server install instructions (#5129) 2017-10-27 15:48:16 -07:00
yonni12 066d1aaa89 Fix typo (#5140)
"take effect" rather than "take affect"
2017-10-27 14:22:31 -07:00
Joao Fernandes 661ae69c31 Fix typo (#5130) 2017-10-26 15:35:31 -07:00
Michael Friis f874d68c29 mention that UCP doesn't yet work on 1709 (#5084)
* mention that UCP doesn't yet work on 1709

* Update note to use new style
2017-10-26 14:48:02 -07:00
Brian Goff 73878e84ae Correct version typo in live-restore doc. (#5121)
The paragraph mentions that live restore is only supported for minor
releases (aka patch releases) but goes on to show "1.12.1" updated to
"1.13.2". This is unfortunately a pretty nasty typo and should be
"1.12.2" not "1.13.2".

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
2017-10-26 13:58:25 -07:00
Michael a9812d3712 Minor edit (#5114)
Using verbose args in example makes it easier to grok
2017-10-25 18:09:59 -07:00
Arush Salil 52669983f8 Update code snippet (#5111)
In the code sample mentioned in `Start a service with volumes` it says

> The following example starts a nginx service with four replicas, each of which uses a local volume called myvol2.

But --replicas=4 is missing from the code sample which reads:

```
$ docker service create -d \
  --name devtest-service \
  --mount source=myvol2,target=/app \
  nginx:latest
```
Instead of this it rather should be:

```
$ docker service create -d \
--replicas=4 \
--name devtest-service \
--mount source=myvol2,target=/app \
nginx:latest
```
2017-10-25 18:08:45 -07:00
Misty Stanley-Jones cc86862e46 Improve the link to source code for storage drivers (#5099) 2017-10-24 16:28:25 -07:00
Misty Stanley-Jones 4b35642747 Increase max TOC level for installation topics (#5100) 2017-10-24 16:27:57 -07:00
Misty Stanley-Jones 6e2ebea106 Address feedback about placement constraints and prefs (#5101) 2017-10-24 16:25:25 -07:00
Koen Punt eccd6be00a remove duplicate word (#5091) 2017-10-24 10:29:08 -07:00
Misty Stanley-Jones 3c614d655f Explain placement constraints and preferences (#4635) 2017-10-23 16:18:08 -07:00
Anil G Kurian 834c7250e0 Update docker-overview.md (#5080)
Since 'container run' is 'container create' + 'container start' the documentation is confusing when we say "You can create, run, stop, move, or delete a container using the Docker API or CLI."
2017-10-23 10:20:04 -07:00
Poschi a4faebc91a Fixed link (#5075) 2017-10-23 10:18:54 -07:00
Joao Fernandes aebc09de82 Replace double hyphen (#5081) 2017-10-23 10:16:57 -07:00
Misty Stanley-Jones e7f9c01bce Clarify label and layer guidance (#4992) 2017-10-20 15:59:04 -07:00
Misty Stanley-Jones 4a962afa85 selinux labels are ignored for bind mounts on services (#5061) 2017-10-20 14:21:36 -07:00
Misty Stanley-Jones 04d3ff2e93 Use ip -4 addr instead of ifconfig (#5062) 2017-10-20 14:21:13 -07:00
Yaroslav Mitsynskiy 3888065197 Correct errors about data propagation into volumes and bind mounts (#5058) 2017-10-20 14:19:06 -07:00
Misty Stanley-Jones 142aee0354 Flesh out swarm key concepts (#4634) 2017-10-20 11:09:23 -07:00
Misty Stanley-Jones c7c16fa8b3 Document that overlay2 is now the default for ubuntu (#5050) 2017-10-20 11:01:53 -07:00
Misty Stanley-Jones 0c5e5622f4 Make it more clear that you probably don't need to configure btrfs (#5049) 2017-10-20 10:14:58 -07:00
Misty Stanley-Jones ea6f50b761 Add info about warnings in docker info (#5048) 2017-10-20 09:48:10 -07:00
Michael T. DeGuzis 16f45698ca Should be mode, not node (#5032)
Original:

"This host is running in loop-lvm node"

Change to:

This host is running in loop-lvm mode"
2017-10-18 09:55:10 -07:00