From 2b650e37ce9e88168e7e74c09e04db364d008a74 Mon Sep 17 00:00:00 2001 From: Klaus Frank Date: Sun, 22 Jan 2023 04:13:04 +0100 Subject: [PATCH] (fix) mount_program is in storage.options.overlay mount_program is in storage.options.overlay and not storage.options (see example in storage.conf) Signed-off-by: Klaus Frank --- docs/tutorials/rootless_tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/rootless_tutorial.md b/docs/tutorials/rootless_tutorial.md index 67434ed3c3..da2feac9ad 100644 --- a/docs/tutorials/rootless_tutorial.md +++ b/docs/tutorials/rootless_tutorial.md @@ -37,7 +37,7 @@ Your distribution might already provide it in the `fuse-overlayfs` package, but The `fuse-overlayfs` project is available from [GitHub](https://github.com/containers/fuse-overlayfs), and provides instructions for easily building a static `fuse-overlayfs` executable. -If Podman is used before `fuse-overlayfs` is installed, it may be necessary to adjust the `storage.conf` file (see "User Configuration Files" below) to change the `driver` option under `[storage]` to `"overlay"` and point the `mount_program` option in `[storage.options]` to the path of the `fuse-overlayfs` executable: +If Podman is used before `fuse-overlayfs` is installed, it may be necessary to adjust the `storage.conf` file (see "User Configuration Files" below) to change the `driver` option under `[storage]` to `"overlay"` and point the `mount_program` option in `[storage.options.overlay]` to the path of the `fuse-overlayfs` executable: ``` [storage] @@ -45,7 +45,7 @@ If Podman is used before `fuse-overlayfs` is installed, it may be necessary to a (...) -[storage.options] +[storage.options.overlay] (...)