From 14fd42e0f4b6209d19d07718f1b0a996a89e05bd Mon Sep 17 00:00:00 2001 From: LRVT <21357789+l4rm4nd@users.noreply.github.com> Date: Wed, 26 Mar 2025 19:48:12 +0100 Subject: [PATCH] docs: Update README.md --- examples/vouchervault/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/vouchervault/README.md b/examples/vouchervault/README.md index d178ab1..0dabf96 100644 --- a/examples/vouchervault/README.md +++ b/examples/vouchervault/README.md @@ -6,14 +6,14 @@ # Notes > [!WARNING] -> The container runs as low-privileged `www-data` user. So you have to adjust the permissions for the persistent database bind mount volume. +> The container runs as low-privileged `www-data` user (UID/GID 33). So you have to adjust the permissions for the persistent database bind mount volume. ```` # create volume dir for persistence mkdir -p /mnt/docker-volumes/vouchervault/database # adjust permissions -sudo chown -R www-data:www-data /mnt/docker-volumes/vouchervault/* +sudo chown -R 33:33 /mnt/docker-volumes/vouchervault/* # spawn the container stack docker compose up