forked from toolshed/abra
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			436 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			436 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package stack // https://github.com/docker/cli/blob/master/cli/command/stack/options/opts.go
 | |
| 
 | |
| // Deploy holds docker stack deploy options
 | |
| type Deploy struct {
 | |
| 	Composefiles     []string
 | |
| 	Namespace        string
 | |
| 	ResolveImage     string
 | |
| 	SendRegistryAuth bool
 | |
| 	Prune            bool
 | |
| 	Detach           bool
 | |
| 	Quiet            bool
 | |
| }
 | |
| 
 | |
| // Remove holds docker stack remove options
 | |
| type Remove struct {
 | |
| 	Namespaces []string
 | |
| 	Detach     bool
 | |
| }
 |