mirror of
https://github.com/rancher/os.git
synced 2025-09-02 15:24:32 +00:00
Bump libcompose and its dependencies
This commit is contained in:
13
vendor/github.com/docker/libcompose/project/container.go
generated
vendored
Normal file
13
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)
|
||||
}
|
Reference in New Issue
Block a user