chore: migrate all upstream code to own dir

This commit is contained in:
2021-10-21 19:35:13 +02:00
parent 80921c9f55
commit dc04cf5ff7
20 changed files with 15 additions and 15 deletions

View File

@ -0,0 +1,15 @@
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
}