grim/convey

Merge the redux branch into default.

2021-12-20, Gary Kramlich
6b1dbda836d9
Merge the redux branch into default.

This officials abandons the 0.14.0 release and moves right on to 0.15.0 which
includes replacing docker with podman and simplifying many things.
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")
)