diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-09-10 19:17:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-10 19:17:39 +0200 |
commit | c1761ba1ac4155bab82fb9b847ccf96489b98265 (patch) | |
tree | c956513692f2052d73a2889413fd805e123f006e /docs/tutorials/rootless_tutorial.md | |
parent | 095647cd6f67fcc761ef49460bb94ba5cc38a1c3 (diff) | |
parent | 3d240bd7953c7c666c4a42f230cf40f1095abbee (diff) | |
download | podman-c1761ba1ac4155bab82fb9b847ccf96489b98265.tar.gz podman-c1761ba1ac4155bab82fb9b847ccf96489b98265.tar.bz2 podman-c1761ba1ac4155bab82fb9b847ccf96489b98265.zip |
Merge pull request #3817 from xcffl/master
Add explanation mounting named volumes for `podman run`
Diffstat (limited to 'docs/tutorials/rootless_tutorial.md')
-rw-r--r-- | docs/tutorials/rootless_tutorial.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/tutorials/rootless_tutorial.md b/docs/tutorials/rootless_tutorial.md index 91962fead..c98e74c96 100644 --- a/docs/tutorials/rootless_tutorial.md +++ b/docs/tutorials/rootless_tutorial.md @@ -22,6 +22,8 @@ The [slirp4netns](https://github.com/rootless-containers/slirp4netns) package pr When using Podman in a rootless environment, it is recommended to use fuse-overlayfs rather than the VFS file system. Installing the fuse3-devel package gives Podman the dependencies it needs to install, build and use fuse-overlayfs in a rootless environment for you. The fuse-overlayfs project is also available from [GitHub](https://github.com/containers/fuse-overlayfs). This especially needs to be checked on Ubuntu distributions as fuse-overlayfs is not generally installed by default. +If podman is installed before fuse-overlayfs, it may be necessary to change the `driver` option under `[storage]` to `"overlay"`. + ### Enable user namespaces (on RHEL7 machines) The number of user namespaces that are allowed on the system is specified in the file `/proc/sys/user/max_user_namespaces`. On most Linux platforms this is preset by default and no adjustment is necessary. However on RHEL7 machines a user with root privileges may need to set that to a reasonable value by using this command: `sysctl user.max_user_namespaces=15000`. |