diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 4d042956..6e86ec39 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -226,13 +226,13 @@ }, { "ImportPath": "github.com/rancherio/rancher-compose/docker", - "Comment": "0.1.0-6-g2c1ca18", - "Rev": "2c1ca181af15180721e684d8e605462e1055cf8b" + "Comment": "0.1.0-7-g610ec8a", + "Rev": "610ec8ab86c2b1a84e474cbf78cc38104ec4e5e4" }, { "ImportPath": "github.com/rancherio/rancher-compose/project", - "Comment": "0.1.0-6-g2c1ca18", - "Rev": "2c1ca181af15180721e684d8e605462e1055cf8b" + "Comment": "0.1.0-7-g610ec8a", + "Rev": "610ec8ab86c2b1a84e474cbf78cc38104ec4e5e4" }, { "ImportPath": "github.com/ryanuber/go-glob", diff --git a/Godeps/_workspace/src/github.com/rancherio/rancher-compose/docker/factory.go b/Godeps/_workspace/src/github.com/rancherio/rancher-compose/docker/factory.go index cad3a176..c5be8351 100644 --- a/Godeps/_workspace/src/github.com/rancherio/rancher-compose/docker/factory.go +++ b/Godeps/_workspace/src/github.com/rancherio/rancher-compose/docker/factory.go @@ -16,8 +16,10 @@ func Convert(c *project.ServiceConfig) (*runconfig.Config, *runconfig.HostConfig } cmd, _ := shlex.Split(c.Command) + entrypoint, _ := shlex.Split(c.Entrypoint) return &runconfig.Config{ + Entrypoint: entrypoint, Hostname: c.Hostname, Domainname: c.DomainName, User: c.User,