diff --git a/config/types.go b/config/types.go index 3bb5381e..bef0c3c8 100644 --- a/config/types.go +++ b/config/types.go @@ -52,12 +52,12 @@ type ContainerConfig struct { Cmd string `yaml:"run,omitempty"` MigrateVolumes bool `yaml:"migrate_volumes,omitempty"` ReloadConfig bool `yaml:"reload_config,omitempty"` - CreateOnly bool `yaml:create_only,omitempty` - Service *project.ServiceConfig `yaml:service,omitempty` + CreateOnly bool `yaml:"create_only,omitempty"` + Service *project.ServiceConfig `yaml:"service,omitempty"` } type Repository struct { - Url string `yaml:url,omitempty` + Url string `yaml:"url,omitempty"` } type Repositories map[string]Repository