1Panel/backend/constant/container.go

16 lines
391 B
Go
Raw Normal View History

package constant
const (
ContainerOpStart = "start"
ContainerOpStop = "stop"
ContainerOpRestart = "reStart"
ContainerOpKill = "kill"
ContainerOpPause = "pause"
ContainerOpUnpause = "unPause"
ContainerOpRename = "reName"
ContainerOpRemove = "remove"
2022-10-12 13:42:58 +08:00
DaemonJsonDir = "/System/Volumes/Data/Users/slooop/.docker/daemon.json"
TmpDockerBuildDir = "/opt/1Panel/build"
)