Vendor integration dependencies.
This commit is contained in:
parent
dd5e3fba01
commit
55b57c736b
2451 changed files with 731611 additions and 0 deletions
13
integration/vendor/github.com/docker/libcompose/project/container.go
generated
vendored
Normal file
13
integration/vendor/github.com/docker/libcompose/project/container.go
generated
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
package project
|
||||
|
||||
import (
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
// Container defines what a libcompose container provides.
|
||||
type Container interface {
|
||||
ID() (string, error)
|
||||
Name() string
|
||||
Port(ctx context.Context, port string) (string, error)
|
||||
IsRunning(ctx context.Context) (bool, error)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue