mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-12 02:21:55 +08:00
20 lines
576 B
Go
20 lines
576 B
Go
package dto
|
|
|
|
type DaemonJsonUpdateByFile struct {
|
|
File string `json:"file"`
|
|
}
|
|
|
|
type DaemonJsonConf struct {
|
|
Status string `json:"status"`
|
|
Version string `json:"version"`
|
|
Mirrors []string `json:"registryMirrors"`
|
|
Registries []string `json:"insecureRegistries"`
|
|
LiveRestore bool `json:"liveRestore"`
|
|
CgroupDriver string `json:"cgroupDriver"`
|
|
}
|
|
|
|
type DockerOperation struct {
|
|
StopSocket bool `json:"stopSocket"`
|
|
StopService bool `json:"stopService"`
|
|
Operation string `json:"operation" validate:"required,oneof=start restart stop"`
|
|
}
|