mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
657 B
23 lines
657 B
package dto
|
|
|
|
type DaemonJsonUpdateByFile struct {
|
|
File string `json:"file"`
|
|
}
|
|
|
|
type DaemonJsonConf struct {
|
|
IsSwarm bool `json:"isSwarm"`
|
|
Status string `json:"status"`
|
|
Version string `json:"version"`
|
|
Mirrors []string `json:"registryMirrors"`
|
|
Registries []string `json:"insecureRegistries"`
|
|
LiveRestore bool `json:"liveRestore"`
|
|
IPTables bool `json:"iptables"`
|
|
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"`
|
|
}
|