fix: show unknown insteaf of empty for missing version

This commit is contained in:
2022-01-01 17:23:21 +01:00
parent 8992050409
commit 7a0d18ceb6

View File

@ -112,7 +112,7 @@ func GetDeployedServicesByName(ctx context.Context, cl *dockerclient.Client, sta
// IsDeployed chekcks whether an appp is deployed or not.
func IsDeployed(ctx context.Context, cl *dockerclient.Client, stackName string) (bool, string, error) {
version := ""
version := "unknown"
isDeployed := false
filter := filters.NewArgs()