1 Star 0 Fork 0

docker-mirror / libcompose

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
container.go 284 Bytes
一键复制 编辑 原始数据 按行查看 历史
lilongyu 提交于 2020-09-24 10:38 . Initial commit
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)
}
1
https://gitee.com/docker-mirror/libcompose.git
git@gitee.com:docker-mirror/libcompose.git
docker-mirror
libcompose
libcompose
7676619a9822

搜索帮助