PortBinding represents a binding between a host IP address and a host port. PortBinding

interface PortBinding {
    HostIp?: string;
    HostPort?: string;
}

Properties

Properties

HostIp?: string

Host IP address that the container's port is mapped to.

HostPort?: string

Host port number that the container's port is mapped to.