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

15 lines
299 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/docker/api/types"
2017-02-07 21:33:23 +00:00
)
// Remove removes the container
func (p *Project) Remove(containerID string) error {
2018-01-22 11:16:03 +00:00
return p.Client.ContainerRemove(context.Background(), containerID, types.ContainerRemoveOptions{
2017-02-07 21:33:23 +00:00
Force: true,
2018-01-22 11:16:03 +00:00
})
2017-02-07 21:33:23 +00:00
}