Add release notes from upstream repos into the formal docs (#3644)

* Import release notes from upstream projects

* Fix Liquid errors

* Try a new structure

* Update 17.06 release notes to RC5
This commit is contained in:
Misty Stanley-Jones
2017-06-20 14:17:04 -07:00
parent e2522d8fbc
commit 3b5192d199
9 changed files with 6162 additions and 24 deletions

View File

@@ -850,10 +850,11 @@ This example sets the template of the created containers based on the
service's name and the ID of the node where the container is running:
```bash
{% raw %}
$ docker service create --name hosttempl \
--hostname="{{.Node.ID}}-{{.Service.Name}}"\
busybox top
{% endraw %}
```
To see the result of using the template, use the `docker service ps` and
@@ -867,7 +868,9 @@ wo41w8hg8qan hosttempl.1 busybox:latest@sha256:29f5d56d12684887bdfa50dcd29fc31
```
```bash
{% raw %}
$ docker inspect --format="{{.Config.Hostname}}" hosttempl.1.wo41w8hg8qanxwjwsg4kxpprj
{% endraw %}
```
## Learn More