These were deprecated inf0e5a0d654and036d3a6baband were only used internally. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
31 lines
749 B
Go
31 lines
749 B
Go
package options
|
|
|
|
// 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
|
|
}
|
|
|
|
// 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
|
|
}
|