diff --git a/models/container.go b/models/container.go index 994843b..5fe59dd 100644 --- a/models/container.go +++ b/models/container.go @@ -553,7 +553,7 @@ func (c *Container) postConfig(handle func(config string) string) error { } func (c *Container) getSession() error { - req := httplib.Post(c.Address + "/auth") + req := httplib.Post(c.Address + "/api/auth") req.Param("username", c.Username) req.Param("password", c.Password) rsp, err := req.Response()