2024-07-23 14:48:37 +08:00
|
|
|
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"
|
|
|
|
|
)
|
2025-07-02 17:43:35 +08:00
|
|
|
|
|
|
|
|
var DaemonJsonPath = "/etc/docker/daemon.json"
|