From 56bf3b1d342da96a8ee37598b1b56ab43d2eea76 Mon Sep 17 00:00:00 2001 From: "kihong.kim" Date: Sun, 4 Jan 2026 21:23:06 +0900 Subject: [PATCH] Add FREESOUND_API_KEY to Docker environment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BGM auto-download was failing because the API key was not passed to container. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 27966ee..f1ae966 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,6 +9,7 @@ services: restart: unless-stopped environment: - OPENAI_API_KEY=${OPENAI_API_KEY} + - FREESOUND_API_KEY=${FREESOUND_API_KEY} - WHISPER_MODEL=${WHISPER_MODEL:-medium} - REDIS_URL=redis://redis:6379/0 volumes: