Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ We currently provide a docker image for testing and integration purposes. We are

```
docker pull ghcr.io/euro-office/documentserver:latest
docker run -i -t -d -p 8080:80 --restart=always -e EXAMPLE_ENABLED=true -e JWT_SECRET=my_jwt_secret ghcr.io/euro-office/documentserver:latest
docker run -i -t -d -p 8080:80 --restart=always -e EXAMPLE_ENABLED=true -e JWT_SECRET=my_long_jwt_secret_at_least_32_chars ghcr.io/euro-office/documentserver:latest
```

### Building
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/orchestrated/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export NODE_CONFIG='{
},
"secret": {
"inbox": {
"string": "'${JWT_SECRET_INBOX:-${JWT_SECRET:=secret}}'"
"string": "'${JWT_SECRET_INBOX:-${JWT_SECRET:=euro-office-dev-jwt-secret-key-2026}}'"
},
"outbox": {
"string": "'${JWT_SECRET_OUTBOX:-${JWT_SECRET}}'"
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/orchestrated/example-docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export NODE_CONFIG='{
"siteUrl": "'${DS_URL:-"/"}'",
"token": {
"enable": '${JWT_ENABLED:-false}',
"secret": "'${JWT_SECRET:-secret}'",
"secret": "'${JWT_SECRET:-euro-office-dev-jwt-secret-key-2026}'",
"authorizationHeader": "'${JWT_HEADER:-Authorization}'"
}
}
Expand Down
Loading