From 13327ac6177a3936a490c22527ce4420efbca733 Mon Sep 17 00:00:00 2001 From: Djordje Lukic Date: Wed, 12 Aug 2020 15:10:54 +0200 Subject: [PATCH] Make the compose message on start mean something --- aci/backend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aci/backend.go b/aci/backend.go index 26bfd292d..feaebab66 100644 --- a/aci/backend.go +++ b/aci/backend.go @@ -228,7 +228,7 @@ func addTag(groupDefinition *containerinstance.ContainerGroup, tagName string) { func (cs *aciContainerService) Start(ctx context.Context, containerID string) error { groupName, containerName := getGroupAndContainerName(containerID) if groupName != containerID { - msg := "cannot delete service %q from compose application %q, you can delete the entire compose app with docker compose down --project-name %s" + msg := "cannot start specified service %q from compose application %q, you can update and restart the entire compose app with docker compose up --project-name %s" return errors.New(fmt.Sprintf(msg, containerName, groupName, groupName)) }