mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 01:23:31 +08:00
20 lines
518 B
Go
20 lines
518 B
Go
package constant
|
|
|
|
const (
|
|
ContainerOpStart = "start"
|
|
ContainerOpStop = "stop"
|
|
ContainerOpRestart = "restart"
|
|
ContainerOpKill = "kill"
|
|
ContainerOpPause = "pause"
|
|
ContainerOpUnpause = "unpause"
|
|
ContainerOpRename = "rename"
|
|
ContainerOpRemove = "remove"
|
|
|
|
ComposeOpStop = "stop"
|
|
ComposeOpRestart = "restart"
|
|
ComposeOpRemove = "remove"
|
|
|
|
TmpDockerBuildDir = "/opt/1Panel/data/docker/build"
|
|
TmpComposeBuildDir = "/opt/1Panel/data/docker/compose"
|
|
DaemonJsonPath = "/tmp/docker/daemon.json"
|
|
)
|