From 33056f80fc9da8df1ea7cb8a3d67743c8947366c Mon Sep 17 00:00:00 2001
From: eternal-flame-AD
Date: Wed, 20 Nov 2024 14:54:55 -0600
Subject: [PATCH 1/2] 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..f4134ea 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"
```
From affa28c0c1ee3498e38e2ead3955036f9dd36375 Mon Sep 17 00:00:00 2001
From: eternal-flame-AD
Date: Fri, 22 Nov 2024 08:10:32 -0600
Subject: [PATCH 2/2] apply suggestions
Signed-off-by: eternal-flame-AD
---
docs/installation.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/installation.md b/docs/installation.md
index f4134ea..c1b6b69 100644
--- a/docs/installation.md
+++ b/docs/installation.md
@@ -41,12 +41,12 @@ services:
ports:
- 8080:80
environment:
- GOTIFY_DEFAULTUSER_PASS: 'my-com"plex.\password'
+ GOTIFY_DEFAULTUSER_PASS: 'admin'
volumes:
- "./gotify_data:/app/data"
# to run gotify as a dedicated user:
# sudo chown -R 1234:1234 ./gotify_data
- user: "1234:1234"
+ # user: "1234:1234"
```