From b01720353ce3d536a5209d54311b383047c05155 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Wed, 26 Apr 2023 22:23:40 +0200 Subject: [PATCH] Document fs permission requirements Signed-off-by: Knut Ahlers --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 07f5751..b84ca8c 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,9 @@ Putting everything together this is how you will start your server: # Optionally create license accept file $ touch {FOLDER}/.ts3server_license_accepted +# Ensure user 1000 can work with the mounted folder +$ chown -R 1000:1000 {FOLDER} + # Start container $ docker run --name TS3 -d -e TS3SERVER_LICENSE=accept -p 9987:9987/udp -v {FOLDER}:/teamspeak3 luzifer/teamspeak3 ```