From 87e49dfb62dcf318f39f0cd9a9b12f41ea1cf10b Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Wed, 28 Jan 2026 17:40:15 +1000 Subject: [PATCH] chore: label temporary socat proxy containers created by 'uc image push' with uncloud.managed --- pkg/client/image.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/client/image.go b/pkg/client/image.go index 16f92d5e..c11d9fc6 100644 --- a/pkg/client/image.go +++ b/pkg/client/image.go @@ -406,6 +406,9 @@ func runDockerVMProxyContainer(ctx context.Context, dockerCli *docker.Client, ta ExposedPorts: nat.PortSet{ containerPort: {}, }, + Labels: map[string]string{ + api.LabelManaged: "", + }, } // Get an available port on localhost to bind the container port to by creating a temporary listener and closing it.