Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pkg/config/resources/container/resource_port.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading