mirror of
https://github.com/docker/docs.git
synced 2026-04-01 00:38:52 +07:00
13 lines
211 B
Go
13 lines
211 B
Go
package cluster
|
|
|
|
import "github.com/samalba/dockerclient"
|
|
|
|
// Container is exported
|
|
type Container struct {
|
|
dockerclient.Container
|
|
|
|
Config *ContainerConfig
|
|
Info dockerclient.ContainerInfo
|
|
Engine *Engine
|
|
}
|