From 11c4e1a93f60e4cf51b486540982524c1ad4a6d5 Mon Sep 17 00:00:00 2001 From: Hielke de Vries Date: Sat, 13 Jun 2026 15:29:15 +0200 Subject: [PATCH] Use working test secret Using hyphens `-` in the `JWT_SECRET` makes the example document giving an error and not loading Signed-off-by: Hielke de Vries --- docs/installation/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation/docker.md b/docs/installation/docker.md index 4a97561..9607c80 100644 --- a/docs/installation/docker.md +++ b/docs/installation/docker.md @@ -16,7 +16,7 @@ docker run -d \ --restart=unless-stopped \ -p 80:80 \ -e JWT_ENABLED=true \ - -e JWT_SECRET=your-secret \ + -e JWT_SECRET=yoursecret \ ghcr.io/euro-office/documentserver:latest ``` @@ -50,7 +50,7 @@ docker run -d \ --restart=unless-stopped \ -p 8080:80 \ -e JWT_ENABLED=true \ - -e JWT_SECRET=your-secret \ + -e JWT_SECRET=yoursecret \ -e EXAMPLE_ENABLED=true \ ghcr.io/euro-office/documentserver:latest ```