* ucp: indicate how to validate client bundle loaded
Recommends using `docker version` to confirm UCP client certificate
bundle has been sourced and the client is successfully able to reach UCP.
Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
* Add raw/endraw Liquid tags
* Run only signed images change
It turns out the "run only signed images" feature only works by selecting teams in the `docker-datacenter` org. This became an issue in UCP 2.2 which has multiple org support.
* Fix reference page for `docker-machine mount`
Signed-off-by: Harald Albers <github@albersweb.de>
* Add reference page for `docker-machine mount` to navigation
Signed-off-by: Harald Albers <github@albersweb.de>
* added KB content re: store publishers guide
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
* added table to KB store content port
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
* added FAQs and publisher overview to first page, start of topic re-org
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
* added table on CVSS, formatting, copy-editing
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
* copied new publishing docs to publish topic
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
* finalized first draft of store docs merging success content into docs
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
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
```