grim/convey

proofreading of documentation

2022-04-10, ivanhoe
6568ae3e734f
proofreading of documentation

Reviewed at https://reviews.imfreedom.org/r/1375/
package podman
import (
"errors"
)
var (
// common errors
ErrNoImage = errors.New("no image specified")
// build errors
ErrNoContainerfile = errors.New("no container file specified")
ErrContextOutsideOfWorkspace = errors.New("context is outside of the workspace")
// login/logout errors
ErrNoRegistry = errors.New("no registry specified")
ErrNoUsername = errors.New("no username provided")
ErrNoPassword = errors.New("no password provided")
// pull/push errors
ErrNoTags = errors.New("no tags specified")
// tag errors
ErrNoTargets = errors.New("no targets specified")
)