1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

refactor(dockerui): replace -s flag with -swarm

This commit is contained in:
Anthony Lapenna 2016-06-21 12:27:32 +12:00
parent 54c82a3a5c
commit 9ca2aa9bbd
3 changed files with 6 additions and 5 deletions

View file

@ -21,7 +21,7 @@ var (
endpoint = flag.String("e", "/var/run/docker.sock", "Dockerd endpoint")
addr = flag.String("p", ":9000", "Address and port to serve UI For Docker")
assets = flag.String("a", ".", "Path to the assets")
swarm = flag.Bool("s", false, "Swarm mode")
swarm = flag.Bool("swarm", false, "Swarm mode")
authKey []byte
authKeyFile = "authKey.dat"
)