From 99031f48052c2feabc70c0709256828654202b64 Mon Sep 17 00:00:00 2001 From: Erik Veld Date: Sat, 8 Mar 2025 20:02:39 +0100 Subject: [PATCH] wip --- pkg/config/resources/container/resource_port.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/config/resources/container/resource_port.go b/pkg/config/resources/container/resource_port.go index 8fe306ba..56368ff7 100644 --- a/pkg/config/resources/container/resource_port.go +++ b/pkg/config/resources/container/resource_port.go @@ -2,6 +2,7 @@ package container // Port is a port mapping type Port struct { + Name string `hcl:"name,label" json:"name"` // Name of the port Local string `hcl:"local" json:"local"` // Local port in the container Remote string `hcl:"remote,optional" json:"remote,omitempty"` // Remote port of the service Host string `hcl:"host,optional" json:"host,omitempty"` // Host port