traefik/integration/vendor/github.com/libkermit/docker/remove.go

18 lines
344 B
Go
Raw Normal View History

2017-02-07 21:33:23 +00:00
package docker
import (
"golang.org/x/net/context"
"github.com/docker/engine-api/types"
)
// Remove removes the container
func (p *Project) Remove(containerID string) error {
if err := p.Client.ContainerRemove(context.Background(), containerID, types.ContainerRemoveOptions{
Force: true,
}); err != nil {
return err
}
return nil
}