-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (29 loc) · 934 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (29 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
services:
app:
image: ghcr.io/ebg-pw/simplestrichliste:main
container_name: simplestrichliste
ports:
- "3000:3000"
environment:
- APPLICATION=Strichliste
- DOMAIN=http://localhost:3000
- FALLBACKLANG=de
- LOG_LEVEL=4
- LOG_TYPE=console
- LOG_COLOR=true
- LOG_TEMPLATE=
- LOG_STACK=false
- GLOBALWAITTIME=0
- PORT=3000 # Ensure this matches the exposed port
- BINDIP=0.0.0.0
- SALTROUNDS=12 # Adjust as needed
- WebTokenDurationH=9600 # Token duration in hours
- DECREASEPERMIN=60 # Ratelimit decrease per minute
- CLOUDFLARE_PROXY=false
- ANY_PROXY=false
- MAX_AVATAR_SIZE_KB=16000 # Max avatar size in KB
- HE_FAST_BUFFERS=false # Set to true if using reverse proxy with HTTP/2
volumes:
# Mount single volume for all persistent data
- ./storage:/app/storage
restart: unless-stopped