1
0

Env Vars & Geocode Data Caching

This commit is contained in:
2025-11-17 08:31:23 -05:00
parent 1f89e8d243
commit ef0ddbe778
5 changed files with 115 additions and 9 deletions

View File

@@ -2,10 +2,12 @@ services:
app:
build: .
ports:
- "3000:3000"
- "8080:8080"
- "${PORT:-3000}:${PORT:-3000}"
- "${WS4KP_PORT:-8080}:${WS4KP_PORT:-8080}"
shm_size: 2gb
environment:
- PORT=3000
- WS4KP_PORT=8080
- PORT=${PORT:-3000}
- WS4KP_PORT=${WS4KP_PORT:-8080}
volumes:
- ./cache:/streaming-app/cache
restart: unless-stopped