mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f16db2c3ad
- As recommended by Docker committers. - Will introduce internal directory when go supports it Signed-off-by: Alessandro Boch <aboch@docker.com>
18 lines
605 B
Go
18 lines
605 B
Go
package netlabel
|
|
|
|
const (
|
|
// GenericData constant that helps to identify an option as a Generic constant
|
|
GenericData = "io.docker.network.generic"
|
|
|
|
// PortMap constant represents Port Mapping
|
|
PortMap = "io.docker.network.endpoint.portmap"
|
|
|
|
// MacAddress constant represents Mac Address config of a Container
|
|
MacAddress = "io.docker.network.endpoint.macaddress"
|
|
|
|
// ExposedPorts constant represents exposedports of a Container
|
|
ExposedPorts = "io.docker.network.endpoint.exposedports"
|
|
|
|
//EnableIPv6 constant represents enabling IPV6 at network level
|
|
EnableIPv6 = "io.docker.network.enable_ipv6"
|
|
)
|