diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-16 04:12:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-16 04:12:38 -0700 |
commit | 3384bd87c85950c245524682efa2a0f124097122 (patch) | |
tree | fe9b53fa3ccf871fe25c67094efe0d4a106835e2 /docs | |
parent | 688c1b33b57dbfa88048d97568623ce18610b101 (diff) | |
parent | 26a89b61b3bd24e20d37fba263334b44afd0187e (diff) | |
download | podman-3384bd87c85950c245524682efa2a0f124097122.tar.gz podman-3384bd87c85950c245524682efa2a0f124097122.tar.bz2 podman-3384bd87c85950c245524682efa2a0f124097122.zip |
Merge pull request #2672 from TomSweeneyRedHat/dev/tsweeney/clistoreconf
Add CLI storage conf example to run manpage
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman-run.1.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/podman-run.1.md b/docs/podman-run.1.md index fe98e43ca..cf385717e 100644 --- a/docs/podman-run.1.md +++ b/docs/podman-run.1.md @@ -1129,6 +1129,15 @@ KillMode=process WantedBy=multi-user.target ``` +### Configuring Storage Options from the command line + +Podman allows for the configuration of storage by changing the values +in the /etc/container/storage.conf or by using global options. This +shows how to setup and use fuse-overlayfs for a one time run of busybox +using global options. + +podman --log-level=debug --storage-driver overlay --storage-opt "overlay.mount_program=/usr/bin/fuse-overlayfs" run busybox /bin/sh + ### Rootless Containers Podman runs as a non root user on most systems. This feature requires that a new enough version of shadow-utils |