traefik/vendor/github.com/libkermit/docker/remove.go
2018-01-22 12:16:03 +01:00

14 lines
299 B
Go

package docker
import (
"golang.org/x/net/context"
"github.com/docker/docker/api/types"
)
// Remove removes the container
func (p *Project) Remove(containerID string) error {
return p.Client.ContainerRemove(context.Background(), containerID, types.ContainerRemoveOptions{
Force: true,
})
}