Typo in docker.endpoint TCP port.
This commit is contained in:
parent
bfd142b13b
commit
7d23d3c0a4
1 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ docker $(docker-machine config mhs-demo0) run \
|
||||||
-c /dev/null \
|
-c /dev/null \
|
||||||
--docker \
|
--docker \
|
||||||
--docker.domain=traefik \
|
--docker.domain=traefik \
|
||||||
--docker.endpoint=tcp://$(docker-machine ip mhs-demo0):3376 \
|
--docker.endpoint=tcp://$(docker-machine ip mhs-demo0):2376 \
|
||||||
--docker.tls \
|
--docker.tls \
|
||||||
--docker.tls.ca=/ssl/ca.pem \
|
--docker.tls.ca=/ssl/ca.pem \
|
||||||
--docker.tls.cert=/ssl/server.pem \
|
--docker.tls.cert=/ssl/server.pem \
|
||||||
|
@ -105,7 +105,7 @@ Let's explain this command:
|
||||||
| `-v /var/lib/boot2docker/:/ssl` | mount the ssl keys generated by docker-machine |
|
| `-v /var/lib/boot2docker/:/ssl` | mount the ssl keys generated by docker-machine |
|
||||||
| `-c /dev/null` | empty config file |
|
| `-c /dev/null` | empty config file |
|
||||||
| `--docker` | enable docker backend |
|
| `--docker` | enable docker backend |
|
||||||
| `--docker.endpoint=tcp://172.18.0.1:3376` | connect to the swarm master using the docker_gwbridge network |
|
| `--docker.endpoint=tcp://172.18.0.1:2376` | connect to the swarm master using the docker_gwbridge network |
|
||||||
| `--docker.tls` | enable TLS using the docker-machine keys |
|
| `--docker.tls` | enable TLS using the docker-machine keys |
|
||||||
| `--web` | activate the webUI on port 8080 |
|
| `--web` | activate the webUI on port 8080 |
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue