summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-23 17:45:38 +0200
committerGitHub <noreply@github.com>2020-04-23 17:45:38 +0200
commit397dcc358a60eef1de22384c662480892a317ec4 (patch)
treeacbc9c2f9d89b3fa48599e944e8e99d17f3cb87f /libpod
parente25528633d1fbcc38f072c8443f0038a9c161cad (diff)
parent17783dda6880c786a6eb3f47b3b6100e43bcdc77 (diff)
downloadpodman-397dcc358a60eef1de22384c662480892a317ec4.tar.gz
podman-397dcc358a60eef1de22384c662480892a317ec4.tar.bz2
podman-397dcc358a60eef1de22384c662480892a317ec4.zip
Merge pull request #5843 from QiWang19/manifest_create
manifest create,add,inspect
Diffstat (limited to 'libpod')
-rw-r--r--libpod/runtime.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go
index 3b8f9e057..e71483ef9 100644
--- a/libpod/runtime.go
+++ b/libpod/runtime.go
@@ -733,6 +733,11 @@ func (r *Runtime) StorageConfig() storage.StoreOptions {
return r.storageConfig
}
+// GetStore returns the runtime stores
+func (r *Runtime) GetStore() storage.Store {
+ return r.store
+}
+
// DBConfig is a set of Libpod runtime configuration settings that are saved in
// a State when it is first created, and can subsequently be retrieved.
type DBConfig struct {