mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 14:08:06 +08:00
16 lines
391 B
Go
16 lines
391 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"
|
|
TmpDockerBuildDir = "/opt/1Panel/build"
|
|
)
|