Versions in this module Expand all Collapse all v1 v1.1.2 Jun 12, 2025 Changes in this version + var ErrAlreadyExists = errors.New("resource already exists") + var ErrCanceled = errors.New("operation canceled") + var ErrDaemonNotRunning = errors.New("docker daemon is not running") + var ErrInvalidConfig = errors.New("invalid configuration") + var ErrNotFound = errors.New("resource not found") + var ErrTimeout = errors.New("operation timed out") + func IsAlreadyExists(err error) bool + func IsCanceled(err error) bool + func IsDaemonNotRunning(err error) bool + func IsInvalidConfig(err error) bool + func IsNotFound(err error) bool + func IsTimeout(err error) bool + func New(message string) error + func Wrap(err error, message string) error + type ConfigError struct + Field string + Message string + func (e *ConfigError) Error() string + func (e *ConfigError) Is(target error) bool + type ContainerError struct + ID string + Message string + Op string + func (e *ContainerError) Error() string + type DaemonNotRunningError struct + Message string + func (e *DaemonNotRunningError) Error() string + func (e *DaemonNotRunningError) Is(target error) bool + type ExecError struct + ID string + Message string + Op string + func (e *ExecError) Error() string + type ImageError struct + Message string + Op string + Ref string + func (e *ImageError) Error() string + type NetworkError struct + ID string + Message string + Op string + func (e *NetworkError) Error() string + type ResourceExistsError struct + ID string + ResourceType string + func (e *ResourceExistsError) Error() string + func (e *ResourceExistsError) Is(target error) bool + type ResourceNotFoundError struct + ID string + ResourceType string + func (e *ResourceNotFoundError) Error() string + func (e *ResourceNotFoundError) Is(target error) bool + type ValidationError struct + Field string + Message string + func (e *ValidationError) Error() string + func (e *ValidationError) Is(target error) bool + type VolumeError struct + Message string + Name string + Op string + func (e *VolumeError) Error() string