2017-02-07 21:33:23 +00:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
2017-07-06 14:28:13 +00:00
|
|
|
"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
|
|
|
}
|