summaryrefslogtreecommitdiff
path: root/libpod/container_internal.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r--libpod/container_internal.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go
index 80c00a622..051fe4b9e 100644
--- a/libpod/container_internal.go
+++ b/libpod/container_internal.go
@@ -451,6 +451,8 @@ func (c *Container) setupStorage(ctx context.Context) error {
options.MountOpts = newOptions
}
+ options.Volatile = c.config.Volatile
+
c.setupStorageMapping(&options.IDMappingOptions, &c.config.IDMappings)
containerInfo, err := c.runtime.storageService.CreateContainerStorage(ctx, c.runtime.imageContext, c.config.RootfsImageName, c.config.RootfsImageID, c.config.Name, c.config.ID, options)
@@ -1842,7 +1844,7 @@ func (c *Container) cleanup(ctx context.Context) error {
// Unmount image volumes
for _, v := range c.config.ImageVolumes {
- img, err := c.runtime.ImageRuntime().NewFromLocal(v.Source)
+ img, _, err := c.runtime.LibimageRuntime().LookupImage(v.Source, nil)
if err != nil {
if lastError == nil {
lastError = err