refactor: use adapted upstream detach=false logic [ci skip]

See coop-cloud/organising#607.
This commit is contained in:
2024-07-02 12:54:48 +02:00
parent 2014cd6622
commit 9554ad40c8
10 changed files with 110 additions and 45 deletions

View File

@ -7,9 +7,12 @@ type Deploy struct {
ResolveImage string
SendRegistryAuth bool
Prune bool
Detach bool
Quiet bool
}
// Remove holds docker stack remove options
type Remove struct {
Namespaces []string
Detach bool
}