fix(deps): update module github.com/containers/storage to v1.45.1

Signed-off-by: Renovate Bot <bot@renovateapp.com>
This commit is contained in:
renovate[bot]
2023-01-18 00:13:07 +00:00
committed by GitHub
parent 8e09e641bf
commit 0698e82b30
5 changed files with 10 additions and 5 deletions

View File

@@ -1 +1 @@
1.45.0
1.45.1

View File

@@ -300,7 +300,11 @@ func getRootlessStorageOpts(rootlessUID int, systemOpts StoreOptions) (StoreOpti
}
}
if opts.GraphDriverName == "" {
opts.GraphDriverName = "vfs"
if len(systemOpts.GraphDriverPriority) == 0 {
opts.GraphDriverName = "vfs"
} else {
opts.GraphDriverPriority = systemOpts.GraphDriverPriority
}
}
if os.Getenv("STORAGE_OPTS") != "" {