1Panel/backend/constant/container.go
2022-10-19 15:06:32 +08:00

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"
)