Merge pull request #22 from schmichael/default-socket

Default endpoint to local unix socket
pull/2/head
Michael Crosby 2014-03-10 16:51:14 -07:00
commit 082d530c4d
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import (
)
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")
assets = flag.String("a", ".", "Path to the assets")
)