Adding the hostname option to docker service command

Signed-off-by: Nikolay Milovanov <nmil@itransformers.net>
master
Nikolay Milovanov 2016-10-27 12:44:19 +01:00 committed by Tibor Vass
parent b823284d4a
commit ea6fc78b8f
1 changed files with 7 additions and 0 deletions

View File

@ -32,6 +32,7 @@ Options:
--health-retries int Consecutive failures needed to report unhealthy --health-retries int Consecutive failures needed to report unhealthy
--health-timeout duration Maximum time to allow one check to run --health-timeout duration Maximum time to allow one check to run
--help Print usage --help Print usage
--hostname Service containers hostname
-l, --label value Service labels (default []) -l, --label value Service labels (default [])
--limit-cpu value Limit CPUs (default 0.000) --limit-cpu value Limit CPUs (default 0.000)
--limit-memory value Limit Memory (default 0 B) --limit-memory value Limit Memory (default 0 B)
@ -134,6 +135,12 @@ This sets environmental variables for all tasks in a service. For example:
$ docker service create --name redis_2 --replicas 5 --env MYVAR=foo redis:3.0.6 $ docker service create --name redis_2 --replicas 5 --env MYVAR=foo redis:3.0.6
``` ```
### Create a docker service with specific hostname (--hostname)
This option sets the docker service containers hostname to a specific string. For example:
```bash
$ docker service create --name redis --hostname myredis redis:3.0.6
```
### Set metadata on a service (-l, --label) ### Set metadata on a service (-l, --label)
A label is a `key=value` pair that applies metadata to a service. To label a A label is a `key=value` pair that applies metadata to a service. To label a