diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2018-04-26 17:21:48 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-15 14:53:18 +0000 |
commit | 7bdfb4f9b361aca4f4f3337907feb3ca414d36e4 (patch) | |
tree | aff63093af49df79820e72a5a68f07e6fe70b863 /libpod/container_commit.go | |
parent | 4b4de5dc21f034f5f678114dbf6d51f047c96a59 (diff) | |
download | podman-7bdfb4f9b361aca4f4f3337907feb3ca414d36e4.tar.gz podman-7bdfb4f9b361aca4f4f3337907feb3ca414d36e4.tar.bz2 podman-7bdfb4f9b361aca4f4f3337907feb3ca414d36e4.zip |
podman: accept option --rootfs to use exploded images
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Closes: #871
Approved by: mheon
Diffstat (limited to 'libpod/container_commit.go')
-rw-r--r-- | libpod/container_commit.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/container_commit.go b/libpod/container_commit.go index 2872012b8..929850cbe 100644 --- a/libpod/container_commit.go +++ b/libpod/container_commit.go @@ -34,6 +34,10 @@ func (c *Container) Commit(ctx context.Context, destImage string, options Contai isEnvCleared, isLabelCleared, isExposeCleared, isVolumeCleared bool ) + if c.config.Rootfs != "" { + return nil, errors.Errorf("cannot commit a container that uses an exploded rootfs") + } + if !c.batched { c.lock.Lock() defer c.lock.Unlock() |