diff --git a/internal/api/container.go b/internal/api/container.go index 186811b8..2b595ae5 100644 --- a/internal/api/container.go +++ b/internal/api/container.go @@ -71,6 +71,8 @@ func (c *Container) ServiceSpec() (ServiceSpec, error) { return ServiceSpec{}, fmt.Errorf("get service ports: %w", err) } + // TODO: many properties on the container such as Config.Cmd or Config.Entrypoint are populated when the container + // is created. return ServiceSpec{ Container: ContainerSpec{ Command: c.Config.Cmd,