From e251dd950b9c869942f527a73173a795c207cde5 Mon Sep 17 00:00:00 2001 From: Anton Ovchinnikov Date: Thu, 16 Oct 2025 23:33:25 +0200 Subject: [PATCH] fix: Improve wording for containerd warning --- pkg/client/image.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/client/image.go b/pkg/client/image.go index 161cd76c..f03b075d 100644 --- a/pkg/client/image.go +++ b/pkg/client/image.go @@ -233,7 +233,8 @@ func (cli *Client) pushImageToMachine( pw.Event(progress.NewEvent(pushEventID, progress.Error, "containerd image store required")) return fmt.Errorf("docker on machine '%s' is not using containerd image store, "+ "which is required for pushing images. Follow the instructions to enable it: "+ - "https://docs.docker.com/engine/storage/containerd/", machine.Name) + "https://docs.docker.com/engine/storage/containerd/, and then restart the uncloud daemon "+ + "via 'systemctl restart uncloud'", machine.Name) } machineSubnet, _ := machine.Network.Subnet.ToPrefix()