abra/pkg/upstream/stack/options.go
decentral1se a458a5d9f7
All checks were successful
continuous-integration/drone/push Build is passing
docs: mark upstreams for all upstreams
2021-10-21 19:54:43 +02:00

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
}