options,rootless: honor imagestore from config file
Honor `imagestore` option from config file for rootless setups. Fixes issues in: https://github.com/containers/podman/pull/18224 Signed-off-by: Aditya R <arajan@redhat.com>
This commit is contained in:
parent
2d5450f634
commit
2bcafa5897
|
|
@ -300,6 +300,7 @@ func getRootlessStorageOpts(rootlessUID int, systemOpts StoreOptions) (StoreOpti
|
|||
// present.
|
||||
if defaultConfigFileSet {
|
||||
opts.GraphDriverOptions = systemOpts.GraphDriverOptions
|
||||
opts.ImageStore = systemOpts.ImageStore
|
||||
} else if opts.GraphDriverName == overlayDriver {
|
||||
for _, o := range systemOpts.GraphDriverOptions {
|
||||
if strings.Contains(o, "ignore_chown_errors") {
|
||||
|
|
|
|||
Loading…
Reference in New Issue