2022-10-08 10:32:02 +00:00
|
|
|
package constant
|
|
|
|
|
|
|
|
const (
|
|
|
|
ContainerOpStart = "start"
|
|
|
|
ContainerOpStop = "stop"
|
2022-10-17 08:04:39 +00:00
|
|
|
ContainerOpRestart = "restart"
|
2022-10-08 10:32:02 +00:00
|
|
|
ContainerOpKill = "kill"
|
|
|
|
ContainerOpPause = "pause"
|
2022-10-17 08:04:39 +00:00
|
|
|
ContainerOpUnpause = "unpause"
|
|
|
|
ContainerOpRename = "rename"
|
2022-10-08 10:32:02 +00:00
|
|
|
ContainerOpRemove = "remove"
|
2022-10-10 08:47:05 +00:00
|
|
|
|
2022-10-17 08:04:39 +00:00
|
|
|
ComposeOpStop = "stop"
|
|
|
|
ComposeOpRestart = "restart"
|
|
|
|
ComposeOpRemove = "remove"
|
|
|
|
|
2023-01-29 08:38:34 +00:00
|
|
|
DaemonJsonPath = "/etc/docker/daemon.json"
|
2022-10-08 10:32:02 +00:00
|
|
|
)
|