docker

package
v1.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 4, 2018 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client added in v1.3.3

type Client interface {
	ListContainers() ([]Container, error)
	ContainerLogs(ctx context.Context, id string) (<-chan string, <-chan error)
	Events(ctx context.Context) (<-chan events.Message, <-chan error)
}

Client is a proxy around the docker client

func NewClient added in v1.3.3

func NewClient() Client

NewClient creates a new instance of Client

type Container

type Container struct {
	ID      string   `json:"id"`
	Names   []string `json:"names"`
	Name    string   `json:"name"`
	Image   string   `json:"image"`
	ImageID string   `json:"imageId"`
	Command string   `json:"command"`
	Created int64    `json:"created"`
	State   string   `json:"state"`
	Status  string   `json:"status"`
}

Container represents an internal representation of docker containers

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL