mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-11-01 03:37:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package dto
 | |
| 
 | |
| type DaemonJsonUpdateByFile struct {
 | |
| 	File string `json:"file"`
 | |
| }
 | |
| 
 | |
| type DockerStatus struct {
 | |
| 	IsActive bool `json:"isActive"`
 | |
| 	IsExist  bool `json:"isExist"`
 | |
| }
 | |
| 
 | |
| type DaemonJsonConf struct {
 | |
| 	IsSwarm      bool     `json:"isSwarm"`
 | |
| 	Version      string   `json:"version"`
 | |
| 	Mirrors      []string `json:"registryMirrors"`
 | |
| 	Registries   []string `json:"insecureRegistries"`
 | |
| 	LiveRestore  bool     `json:"liveRestore"`
 | |
| 	IPTables     bool     `json:"iptables"`
 | |
| 	CgroupDriver string   `json:"cgroupDriver"`
 | |
| 
 | |
| 	Ipv6         bool   `json:"ipv6"`
 | |
| 	FixedCidrV6  string `json:"fixedCidrV6"`
 | |
| 	Ip6Tables    bool   `json:"ip6Tables"`
 | |
| 	Experimental bool   `json:"experimental"`
 | |
| 
 | |
| 	LogMaxSize string `json:"logMaxSize"`
 | |
| 	LogMaxFile string `json:"logMaxFile"`
 | |
| }
 | |
| 
 | |
| type LogOption struct {
 | |
| 	LogMaxSize string `json:"logMaxSize"`
 | |
| 	LogMaxFile string `json:"logMaxFile"`
 | |
| }
 | |
| 
 | |
| type Ipv6Option struct {
 | |
| 	FixedCidrV6  string `json:"fixedCidrV6"`
 | |
| 	Ip6Tables    bool   `json:"ip6Tables" validate:"required"`
 | |
| 	Experimental bool   `json:"experimental"`
 | |
| }
 | |
| 
 | |
| type DockerOperation struct {
 | |
| 	Operation string `json:"operation" validate:"required,oneof=start restart stop"`
 | |
| }
 |