forked from toolshed/abra
.chglog
.gitea
cli
cmd
pkg
app
catalogue
client
container
convert
stack
loader.go
options.go
remove.go
stack.go
client.go
connection.go
context.go
context_test.go
registry.go
secret.go
volumes.go
compose
config
git
recipe
secret
web
scripts
tests
.drone.yml
.envrc.sample
.gitignore
.goreleaser.yml
Makefile
README.md
go.mod
go.sum
16 lines
294 B
Go
16 lines
294 B
Go
package stack
|
|
|
|
// 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
|
|
}
|