2013-11-09 15:12:23 -05:00
|
|
|
package docker
|
|
|
|
|
2013-11-09 16:15:51 -05:00
|
|
|
import (
|
|
|
|
"io"
|
2015-05-29 12:29:59 -04:00
|
|
|
|
|
|
|
"github.com/hashicorp/go-version"
|
2013-11-09 16:15:51 -05:00
|
|
|
)
|
|
|
|
|
2013-11-09 15:12:23 -05:00
|
|
|
// Driver is the interface that has to be implemented to communicate with
|
|
|
|
// Docker. The Driver interface also allows the steps to be tested since
|
|
|
|
// a mock driver can be shimmed in.
|
|
|
|
type Driver interface {
|
2014-07-20 14:57:10 -04:00
|
|
|
// Commit the container to a tag
|
2016-11-24 07:33:42 -05:00
|
|
|
Commit(id string, author string, changes []string, message string) (string, error)
|
2014-07-20 14:57:10 -04:00
|
|
|
|
2014-01-19 22:48:06 -05:00
|
|
|
// Delete an image that is imported into Docker
|
|
|
|
DeleteImage(id string) error
|
|
|
|
|
2013-11-09 16:15:51 -05:00
|
|
|
// Export exports the container with the given ID to the given writer.
|
|
|
|
Export(id string, dst io.Writer) error
|
|
|
|
|
2014-01-19 22:55:01 -05:00
|
|
|
// Import imports a container from a tar file
|
|
|
|
Import(path, repo string) (string, error)
|
|
|
|
|
2015-06-15 01:09:38 -04:00
|
|
|
// IPAddress returns the address of the container that can be used
|
|
|
|
// for external access.
|
|
|
|
IPAddress(id string) (string, error)
|
|
|
|
|
2014-09-05 18:06:07 -04:00
|
|
|
// Login. This will lock the driver from performing another Login
|
|
|
|
// until Logout is called. Therefore, any users MUST call Logout.
|
2014-09-05 17:26:19 -04:00
|
|
|
Login(repo, email, username, password string) error
|
|
|
|
|
2014-09-05 18:06:07 -04:00
|
|
|
// Logout. This can only be called if Login succeeded.
|
2014-09-05 17:26:19 -04:00
|
|
|
Logout(repo string) error
|
|
|
|
|
2013-11-09 15:12:23 -05:00
|
|
|
// Pull should pull down the given image.
|
|
|
|
Pull(image string) error
|
2013-11-09 16:03:01 -05:00
|
|
|
|
2014-01-19 23:42:42 -05:00
|
|
|
// Push pushes an image to a Docker index/registry.
|
|
|
|
Push(name string) error
|
|
|
|
|
2014-07-20 16:58:07 -04:00
|
|
|
// Save an image with the given ID to the given writer.
|
|
|
|
SaveImage(id string, dst io.Writer) error
|
|
|
|
|
2013-11-09 16:03:01 -05:00
|
|
|
// StartContainer starts a container and returns the ID for that container,
|
|
|
|
// along with a potential error.
|
|
|
|
StartContainer(*ContainerConfig) (string, error)
|
|
|
|
|
|
|
|
// StopContainer forcibly stops a container.
|
|
|
|
StopContainer(id string) error
|
2013-11-10 00:26:05 -05:00
|
|
|
|
2014-07-20 14:58:03 -04:00
|
|
|
// TagImage tags the image with the given ID
|
2015-04-18 00:12:28 -04:00
|
|
|
TagImage(id string, repo string, force bool) error
|
2014-07-20 14:58:03 -04:00
|
|
|
|
2013-11-10 00:26:05 -05:00
|
|
|
// Verify verifies that the driver can run
|
|
|
|
Verify() error
|
2015-05-29 12:29:59 -04:00
|
|
|
|
|
|
|
// Version reads the Docker version
|
|
|
|
Version() (*version.Version, error)
|
2013-11-09 16:03:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ContainerConfig is the configuration used to start a container.
|
|
|
|
type ContainerConfig struct {
|
2013-12-27 12:17:45 -05:00
|
|
|
Image string
|
|
|
|
RunCommand []string
|
|
|
|
Volumes map[string]string
|
2016-04-29 22:12:20 -04:00
|
|
|
Privileged bool
|
2013-12-27 12:17:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is the template that is used for the RunCommand in the ContainerConfig.
|
|
|
|
type startContainerTemplate struct {
|
2014-09-08 13:28:21 -04:00
|
|
|
Image string
|
2013-11-09 15:12:23 -05:00
|
|
|
}
|