2015-07-21 18:04:41 +02:00
|
|
|
package container
|
2015-07-14 22:51:12 +02:00
|
|
|
|
|
|
|
import (
|
2015-07-16 22:25:01 +02:00
|
|
|
"fmt"
|
2015-07-14 22:51:12 +02:00
|
|
|
"log"
|
2015-07-16 22:25:01 +02:00
|
|
|
"strings"
|
2015-07-17 20:56:09 +02:00
|
|
|
"time"
|
2015-07-14 22:51:12 +02:00
|
|
|
|
|
|
|
"github.com/samalba/dockerclient"
|
|
|
|
)
|
|
|
|
|
2015-07-21 18:04:41 +02:00
|
|
|
const (
|
|
|
|
defaultStopSignal = "SIGTERM"
|
|
|
|
signalLabel = "com.centurylinklabs.watchtower.stop-signal"
|
|
|
|
)
|
|
|
|
|
2015-07-14 22:51:12 +02:00
|
|
|
var (
|
|
|
|
pullImages bool
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
pullImages = true
|
|
|
|
}
|
|
|
|
|
2015-07-22 00:41:58 +02:00
|
|
|
type Filter func(Container) bool
|
2015-07-21 00:54:18 +02:00
|
|
|
|
2015-07-14 22:51:12 +02:00
|
|
|
type Client interface {
|
2015-07-22 00:41:58 +02:00
|
|
|
ListContainers(Filter) ([]Container, error)
|
|
|
|
StopContainer(Container, time.Duration) error
|
|
|
|
StartContainer(Container) error
|
|
|
|
RenameContainer(Container, string) error
|
|
|
|
IsContainerStale(Container) (bool, error)
|
2015-07-14 22:51:12 +02:00
|
|
|
}
|
|
|
|
|
2015-07-21 21:37:18 +02:00
|
|
|
func NewClient(dockerHost string) Client {
|
|
|
|
docker, err := dockerclient.NewDockerClient(dockerHost, nil)
|
2015-07-14 22:51:12 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Error instantiating Docker client: %s\n", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return DockerClient{api: docker}
|
|
|
|
}
|
|
|
|
|
|
|
|
type DockerClient struct {
|
|
|
|
api dockerclient.Client
|
|
|
|
}
|
|
|
|
|
2015-07-22 00:41:58 +02:00
|
|
|
func (client DockerClient) ListContainers(fn Filter) ([]Container, error) {
|
2015-07-14 22:51:12 +02:00
|
|
|
cs := []Container{}
|
|
|
|
|
|
|
|
runningContainers, err := client.api.ListContainers(false, false, "")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, runningContainer := range runningContainers {
|
|
|
|
containerInfo, err := client.api.InspectContainer(runningContainer.Id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
imageInfo, err := client.api.InspectImage(containerInfo.Image)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-07-21 00:54:18 +02:00
|
|
|
c := Container{containerInfo: containerInfo, imageInfo: imageInfo}
|
|
|
|
if fn(c) {
|
2015-07-21 23:40:22 +02:00
|
|
|
cs = append(cs, c)
|
2015-07-21 00:54:18 +02:00
|
|
|
}
|
2015-07-14 22:51:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return cs, nil
|
|
|
|
}
|
|
|
|
|
2015-07-22 00:41:58 +02:00
|
|
|
func (client DockerClient) StopContainer(c Container, timeout time.Duration) error {
|
2015-07-21 18:04:41 +02:00
|
|
|
signal := defaultStopSignal
|
2015-07-14 22:51:12 +02:00
|
|
|
|
2015-07-21 18:04:41 +02:00
|
|
|
if sig, ok := c.containerInfo.Config.Labels[signalLabel]; ok {
|
2015-07-14 22:51:12 +02:00
|
|
|
signal = sig
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Stopping: %s\n", c.Name())
|
|
|
|
|
|
|
|
if err := client.api.KillContainer(c.containerInfo.Id, signal); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-07-21 18:04:41 +02:00
|
|
|
// Wait for container to exit, but proceed anyway after the timeout elapses
|
2015-07-21 00:54:18 +02:00
|
|
|
client.waitForStop(c, timeout)
|
2015-07-17 20:56:09 +02:00
|
|
|
|
2015-07-14 22:51:12 +02:00
|
|
|
return client.api.RemoveContainer(c.containerInfo.Id, true, false)
|
|
|
|
}
|
|
|
|
|
2015-07-22 00:41:58 +02:00
|
|
|
func (client DockerClient) StartContainer(c Container) error {
|
2015-07-14 22:51:12 +02:00
|
|
|
config := c.runtimeConfig()
|
|
|
|
hostConfig := c.hostConfig()
|
2015-07-21 00:54:18 +02:00
|
|
|
name := c.Name()
|
2015-07-14 22:51:12 +02:00
|
|
|
|
2015-07-21 00:54:18 +02:00
|
|
|
if name == "" {
|
|
|
|
log.Printf("Starting new container from %s", c.containerInfo.Config.Image)
|
|
|
|
} else {
|
|
|
|
log.Printf("Starting %s\n", name)
|
|
|
|
}
|
2015-07-14 22:51:12 +02:00
|
|
|
|
2015-07-21 23:40:22 +02:00
|
|
|
newContainerID, err := client.api.CreateContainer(config, name)
|
2015-07-14 22:51:12 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-07-21 23:40:22 +02:00
|
|
|
return client.api.StartContainer(newContainerID, hostConfig)
|
2015-07-14 22:51:12 +02:00
|
|
|
}
|
2015-07-21 00:54:18 +02:00
|
|
|
|
2015-07-22 00:41:58 +02:00
|
|
|
func (client DockerClient) RenameContainer(c Container, newName string) error {
|
2015-07-21 00:54:18 +02:00
|
|
|
return client.api.RenameContainer(c.containerInfo.Id, newName)
|
|
|
|
}
|
|
|
|
|
2015-07-22 00:41:58 +02:00
|
|
|
func (client DockerClient) IsContainerStale(c Container) (bool, error) {
|
|
|
|
containerInfo := c.containerInfo
|
|
|
|
oldImageInfo := c.imageInfo
|
|
|
|
imageName := containerInfo.Config.Image
|
|
|
|
|
|
|
|
if pullImages {
|
|
|
|
if !strings.Contains(imageName, ":") {
|
|
|
|
imageName = fmt.Sprintf("%s:latest", imageName)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Pulling %s for %s\n", imageName, c.Name())
|
|
|
|
if err := client.api.PullImage(imageName, nil); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
newImageInfo, err := client.api.InspectImage(imageName)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if newImageInfo.Id != oldImageInfo.Id {
|
|
|
|
log.Printf("Found new %s image (%s)\n", imageName, newImageInfo.Id)
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2015-07-21 00:54:18 +02:00
|
|
|
func (client DockerClient) waitForStop(c Container, waitTime time.Duration) error {
|
|
|
|
timeout := time.After(waitTime)
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-timeout:
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
if ci, err := client.api.InspectContainer(c.containerInfo.Id); err != nil {
|
|
|
|
return err
|
|
|
|
} else if !ci.State.Running {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|