diff --git a/containers/types.go b/containers/types.go index f9110b6..a0b58b5 100644 --- a/containers/types.go +++ b/containers/types.go @@ -563,6 +563,13 @@ func (c *Container) GetPrimaryTech() (apps.AppTech, error) { parts := strings.Split(string(*stdouterr), "/") if len(parts) == 5 { rawTech := parts[3] + if rawTech == "default" { + return apps.AppTech{ + Name: "default", + Version: "", + }, nil + } + techParts := strings.Split(rawTech, "-") if len(techParts) != 2 { return tech, errors.New("wrong number of tech parts (" + rawTech + ")")