mirror of https://github.com/docker/docs.git
13 lines
348 B
Go
13 lines
348 B
Go
package container
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
// ErrImageRequired returned if a task is missing the image definition.
|
|
ErrImageRequired = fmt.Errorf("dockerexec: image required")
|
|
|
|
// ErrContainerDestroyed returned when a container is prematurely destroyed
|
|
// during a wait call.
|
|
ErrContainerDestroyed = fmt.Errorf("dockerexec: container destroyed")
|
|
)
|