mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
16 lines
406 B
Go
16 lines
406 B
Go
package docker
|
|
|
|
const (
|
|
WildcardAlias = "*"
|
|
|
|
NSProxy = "proxy"
|
|
NSHomePage = "homepage"
|
|
|
|
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"
|
|
)
|