Add container creation logic to Libpod
Signed-off-by: Matthew Heon <mheon@redhat.com>
This commit is contained in:
parent
8d78e3cfac
commit
241653e152
8 changed files with 873 additions and 51 deletions
|
@ -20,6 +20,10 @@ var (
|
|||
// ErrImageExists indicated an image with the same ID already exists
|
||||
ErrImageExists = errors.New("image already exists")
|
||||
|
||||
// ErrCtrStateInvalid indicates a container is in an improper state for
|
||||
// the requested operation
|
||||
ErrCtrStateInvalid = errors.New("container state improper")
|
||||
|
||||
// ErrRuntimeFinalized indicates that the runtime has already been
|
||||
// created and cannot be modified
|
||||
ErrRuntimeFinalized = errors.New("runtime has been finalized")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue