summaryrefslogtreecommitdiff
path: root/libnetwork/ipamapi/labels.go
blob: e5c7d1cc7ef943d21a9a2ad640b09e13db67200d (plain)
1
2
3
4
5
6
7
8
9
10
package ipamapi

const (
	// Prefix constant marks the reserved label space for libnetwork
	Prefix = "com.docker.network"

	// AllocSerialPrefix constant marks the reserved label space for libnetwork ipam
	// allocation ordering.(serial/first available)
	AllocSerialPrefix = Prefix + ".ipam.serial"
)