You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prior to this fix the documentation for the swarm example included
syntax that would fail with the following error.
`Error : flag needs an argument: --docker.domain`
This fix specifies flags using the `=` between the flag name and value.
Tested on: Docker version 1.12.2-rc1, build 45bed2c, experimental
The Swarm example at https://docs.traefik.io/user-guide/swarm/ works for me with Docker 1.12.0-rc3 after i change:
docker $(docker-machine config mhs-demo0) run
-d
-p 80:80 -p 8080:8080
--net=my-net
-v /var/lib/boot2docker/:/ssl
traefik
-l DEBUG
-c /dev/null
--docker
--docker.domain traefik
--docker.endpoint tcp://$(docker-machine ip mhs-demo0):3376
--docker.tls
--docker.tls.ca /ssl/ca.pem
--docker.tls.cert /ssl/server.pem
--docker.tls.key /ssl/server-key.pem
--docker.tls.insecureSkipVerify
--docker.watch
--web
to:
docker $(docker-machine config mhs-demo0) run
-d
-p 80:80 -p 8080:8080
--net=my-net
-v /var/lib/boot2docker/:/ssl
traefik
-l DEBUG
-c /dev/null
--docker
--docker.domain=traefik
--docker.endpoint=tcp://$(docker-machine ip mhs-demo0):3376
--docker.tls
--docker.tls.ca=/ssl/ca.pem
--docker.tls.cert=/ssl/server.pem
--docker.tls.key=/ssl/server-key.pem
--docker.tls.insecureSkipVerify
--docker.watch
--web
The text was updated successfully, but these errors were encountered: