fix(tts-bot): change port to 3033 to avoid conflict with nutriphi

This commit is contained in:
Till-JS 2026-01-29 16:06:25 +01:00
parent 56d49f8fe2
commit 68a8ad60b9
3 changed files with 208 additions and 7 deletions

View file

@ -1258,7 +1258,7 @@ services:
condition: service_healthy
environment:
NODE_ENV: production
PORT: 3023
PORT: 3033
TZ: Europe/Berlin
MATRIX_HOMESERVER_URL: http://synapse:8008
MATRIX_ACCESS_TOKEN: ${MATRIX_TTS_BOT_TOKEN}
@ -1270,9 +1270,9 @@ services:
volumes:
- matrix_tts_bot_data:/app/data
ports:
- "3023:3023"
- "3033:3033"
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3023/health"]
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3033/health"]
interval: 30s
timeout: 10s
retries: 3