fix: Remove bare SENTRY_DSN from environment sections

Bare variable references in environment: override env_file values
with the host shell value (empty). SENTRY_DSN is already loaded
via env_file: .env, so the explicit references were zeroing it out.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-02-27 08:51:57 +02:00
parent 7493df3b2c
commit 2716f1946a

View File

@@ -7,8 +7,6 @@ services:
env_file: .env env_file: .env
restart: unless-stopped restart: unless-stopped
network_mode: host network_mode: host
environment:
- SENTRY_DSN
bot: bot:
build: build:
@@ -26,7 +24,6 @@ services:
- MEMORY_SERVICE_URL=http://memory-service:8090 - MEMORY_SERVICE_URL=http://memory-service:8090
- PORTAL_URL - PORTAL_URL
- BOT_API_KEY - BOT_API_KEY
- SENTRY_DSN
volumes: volumes:
- bot-data:/data - bot-data:/data
depends_on: depends_on: