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>
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
```
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."
* Update documentation of proxy server configuration
As per the implementation in docker/cli#93 the proxy server addresses
are specified per docker daemon or as defaults. Updated the example to
show the default option.
Fixes#4686
* Fix table layout of proxy environment variables
* Revert "Clarify patch and update cycles (#4894)"
This reverts commit 6b1577aa0d.
* Revert "Add pointer to latest API ref (#4892)"
This reverts commit a6b436d133.
This commit improves engine installation documentation for CentOS,
RHEL, Fedora and Oracle Linux. There are a few fixes and
simplifications. In particular:
1. Fix language about when GPG keys are presented for verification
(when you install a package from a recently added repo).
2. Remove mentions of 'yum/dnf makecache fast'. Unlike Debian/Ubuntu,
which require 'apt update', with both yum and dnf, 'makecache'
is redundand. What's worse, 'dnf makecache fast' is not working
(tested on Fedora 26):
# dnf makecache fast
...
dnf makecache: error: argument timer: invalid choice: 'fast' (choose from 'timer')
3. Source repos are disabled by default, so there is no need to specify
the architecture when running `yum list docker-[ce]e`. The comment
explaining it is also removed.
4. An extra > character in the middle of the line was removed.
[v3: rebase, remove $DOCKERURL reuse hack]
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>