mirror of
https://github.com/yusing/godoxy.git
synced 2025-06-15 06:26:47 +02:00
18 lines
531 B
Go
18 lines
531 B
Go
package docker
|
|
|
|
const (
|
|
WildcardAlias = "*"
|
|
|
|
NSProxy = "proxy"
|
|
|
|
LabelAliases = NSProxy + ".aliases"
|
|
LabelExclude = NSProxy + ".exclude"
|
|
LabelIdleTimeout = NSProxy + ".idle_timeout"
|
|
LabelWakeTimeout = NSProxy + ".wake_timeout"
|
|
LabelStopMethod = NSProxy + ".stop_method"
|
|
LabelStopTimeout = NSProxy + ".stop_timeout"
|
|
LabelStopSignal = NSProxy + ".stop_signal"
|
|
LabelStartEndpoint = NSProxy + ".start_endpoint"
|
|
LabelDependsOn = NSProxy + ".depends_on"
|
|
LabelNetwork = NSProxy + ".network"
|
|
)
|