Add implementation for BoltDB-backed state

Signed-off-by: Matthew Heon <matthew.heon@gmail.com>

Closes: #184
Approved by: baude
This commit is contained in:
Matthew Heon
2017-12-13 22:02:15 -05:00
committed by Atomic Bot
parent 2e96acf300
commit b4cdc27b31
33 changed files with 6659 additions and 10 deletions

View File

@ -201,7 +201,7 @@ func (r *Runtime) removeContainer(c *Container, force bool) error {
// we haven't been created in the runtime yet
if c.state.State != ContainerStateConfigured {
if err := r.ociRuntime.deleteContainer(c); err != nil {
return errors.Wrapf(err, "error removing container %s from runc", c.ID())
return errors.Wrapf(err, "error removing container %s from OCI runtime", c.ID())
}
}