podmanv2 enable remote wait

enable remote container wait with condition

Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
Brent Baude
2020-03-20 14:00:05 -05:00
parent 4a00409bf8
commit c81e065149
12 changed files with 100 additions and 26 deletions

View File

@@ -1,9 +1,13 @@
package entities
import "time"
import (
"time"
"github.com/containers/libpod/libpod/define"
)
type WaitOptions struct {
Condition string
Condition define.ContainerStatus
Interval time.Duration
Latest bool
}