mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-28 01:36:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 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"
 | |
| 
 | |
| 	DaemonJsonPath = "/etc/docker/daemon.json"
 | |
| )
 |