From a06cc424ca2e38e6fdf362eb6bb027b7eb4b026b Mon Sep 17 00:00:00 2001 From: gahusb Date: Tue, 19 May 2026 02:01:23 +0900 Subject: [PATCH] chore(compose): insta-lab REDIS_URL + INTERNAL_API_KEY env + depends_on redis MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 박재오: NAS .env에 INTERNAL_API_KEY=$(openssl rand -hex 32) 추가 필요. 같은 값을 Windows insta-render .env에 보관 (대칭). Plan-B-Insta Phase 1 완료. Co-Authored-By: Claude Opus 4.7 (1M context) --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 336ca6f..a154f06 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -105,8 +105,12 @@ services: - CARD_TEMPLATE_DIR=/app/app/templates - INSTA_DEFAULT_THEME=${INSTA_DEFAULT_THEME:-default} - CORS_ALLOW_ORIGINS=${CORS_ALLOW_ORIGINS:-http://localhost:3007,http://localhost:8080} + - REDIS_URL=${REDIS_URL:-redis://redis:6379} + - INTERNAL_API_KEY=${INTERNAL_API_KEY:-} volumes: - ${RUNTIME_PATH}/data/insta:/app/data + depends_on: + - redis healthcheck: test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"] interval: 60s