From 2d9ff24464282df917841a75c1e5d7c9656c3652 Mon Sep 17 00:00:00 2001 From: eternal-flame-AD Date: Wed, 20 Nov 2024 14:54:55 -0600 Subject: [PATCH] clarify docker-compose environment format (#91) Signed-off-by: eternal-flame-AD --- docs/installation.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/installation.md b/docs/installation.md index 6dcc404..5d5f435 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -41,9 +41,12 @@ services: ports: - 8080:80 environment: - - GOTIFY_DEFAULTUSER_PASS=custom + GOTIFY_DEFAULTUSER_PASS: 'my-com"plex.\password' volumes: - "./gotify_data:/app/data" + # to run gotify as a dedicated user: + # sudo chown -R 1234:1234 ./gotify_data + user: "1234:1234" ```