Updates vendoring to include https://github.com/docker/libcompose/commit/1c4bd4542afb20db0b51afd71d9ebceaf206e2dd as well as general update to all other packages.
14 lines
266 B
Go
14 lines
266 B
Go
package project
|
|
|
|
import (
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// Container defines what a libcompose container provides.
|
|
type Container interface {
|
|
ID() string
|
|
Name() string
|
|
Port(ctx context.Context, port string) (string, error)
|
|
IsRunning(ctx context.Context) bool
|
|
}
|