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

15 lines
299 B
Go
Raw Normal View History

2017-02-07 22:33:23 +01:00
package docker
import (
"golang.org/x/net/context"
"github.com/docker/docker/api/types"
2017-02-07 22:33:23 +01:00
)
// Remove removes the container
func (p *Project) Remove(containerID string) error {
2018-01-22 12:16:03 +01:00
return p.Client.ContainerRemove(context.Background(), containerID, types.ContainerRemoveOptions{
2017-02-07 22:33:23 +01:00
Force: true,
2018-01-22 12:16:03 +01:00
})
2017-02-07 22:33:23 +01:00
}