mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-27 04:34:59 +08:00
15 lines
346 B
Go
15 lines
346 B
Go
package constant
|
|
|
|
const (
|
|
ContainerOpStart = "start"
|
|
ContainerOpStop = "stop"
|
|
ContainerOpRestart = "reStart"
|
|
ContainerOpKill = "kill"
|
|
ContainerOpPause = "pause"
|
|
ContainerOpUnpause = "unPause"
|
|
ContainerOpRename = "reName"
|
|
ContainerOpRemove = "remove"
|
|
|
|
DaemonJsonDir = "/System/Volumes/Data/Users/slooop/.docker/daemon.json"
|
|
)
|