forked from toolshed/abra
.gitea
cli
cmd
pkg
app
autocomplete
catalogue
client
compose
config
container
context
dns
git
limit
recipe
secret
server
ssh
upstream
commandconn
container
convert
stack
loader.go
options.go
remove.go
stack.go
web
scripts
tests
.drone.yml
.envrc.sample
.gitignore
.goreleaser.yml
Makefile
README.md
go.mod
go.sum
renovate.json
16 lines
373 B
Go
16 lines
373 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
|
|
}
|
|
|
|
// Remove holds docker stack remove options
|
|
type Remove struct {
|
|
Namespaces []string
|
|
}
|