mirror of https://github.com/portainer/portainer
Merge pull request #22 from schmichael/default-socket
Default endpoint to local unix socketpull/2/head
commit
082d530c4d
|
@ -13,7 +13,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
endpoint = flag.String("e", "", "Dockerd endpoint")
|
endpoint = flag.String("e", "/var/run/docker.sock", "Dockerd endpoint")
|
||||||
addr = flag.String("p", ":9000", "Address and port to serve dockerui")
|
addr = flag.String("p", ":9000", "Address and port to serve dockerui")
|
||||||
assets = flag.String("a", ".", "Path to the assets")
|
assets = flag.String("a", ".", "Path to the assets")
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue