These were deprecated inf0e5a0d654,036d3a6bab, andd16c560664and were only used internally. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
package options
|
|
|
|
import "github.com/docker/cli/opts"
|
|
|
|
// Deploy holds docker stack deploy options
|
|
//
|
|
// Deprecated: this type was for internal use and will be removed in the next release.
|
|
type Deploy struct {
|
|
Composefiles []string
|
|
Namespace string
|
|
ResolveImage string
|
|
SendRegistryAuth bool
|
|
Prune bool
|
|
Detach bool
|
|
Quiet bool
|
|
}
|
|
|
|
// Config holds docker stack config options
|
|
//
|
|
// Deprecated: this type was for internal use and will be removed in the next release.
|
|
type Config struct {
|
|
Composefiles []string
|
|
SkipInterpolation bool
|
|
}
|
|
|
|
// PS holds docker stack ps options
|
|
//
|
|
// Deprecated: this type was for internal use and will be removed in the next release.
|
|
type PS struct {
|
|
Filter opts.FilterOpt
|
|
NoTrunc bool
|
|
Namespace string
|
|
NoResolve bool
|
|
Quiet bool
|
|
Format string
|
|
}
|
|
|
|
// Remove holds docker stack remove options
|
|
//
|
|
// Deprecated: this type was for internal use and will be removed in the next release.
|
|
type Remove struct {
|
|
Namespaces []string
|
|
Detach bool
|
|
}
|