From fe4d4b493b04bcdf6b27c5ecef05eaf3152c7260 Mon Sep 17 00:00:00 2001 From: ntohidi Date: Thu, 20 Aug 2026 09:46:01 +0200 Subject: [PATCH] fix(docker): align commented env var lines with the environment list The optional LLM-key lines sat at 5-space indent once uncommented, while the live entry uses 4. Removing the '#' produced 'did not find expected - indicator' and broke every compose command until re-indented by hand. Co-Authored-By: Claude Opus 5 (1M context) --- docker-compose.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6beb00169..02cbe0584 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,15 +9,15 @@ x-base-config: &base-config environment: # Auth token passthrough from the host shell (overwrites .llm.env). - CRAWL4AI_API_TOKEN=${CRAWL4AI_API_TOKEN:-} - # Uncomment to set default environment variables (will overwrite .llm.env) - # - OPENAI_API_KEY=${OPENAI_API_KEY:-} - # - DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-} - # - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-} - # - GROQ_API_KEY=${GROQ_API_KEY:-} - # - TOGETHER_API_KEY=${TOGETHER_API_KEY:-} - # - MISTRAL_API_KEY=${MISTRAL_API_KEY:-} - # - GEMINI_API_KEY=${GEMINI_API_KEY:-} - # - LLM_PROVIDER=${LLM_PROVIDER:-} # Optional: Override default provider (e.g., "anthropic/claude-3-opus") + # Uncomment to set default environment variables (will overwrite .llm.env) + # - OPENAI_API_KEY=${OPENAI_API_KEY:-} + # - DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-} + # - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-} + # - GROQ_API_KEY=${GROQ_API_KEY:-} + # - TOGETHER_API_KEY=${TOGETHER_API_KEY:-} + # - MISTRAL_API_KEY=${MISTRAL_API_KEY:-} + # - GEMINI_API_KEY=${GEMINI_API_KEY:-} + # - LLM_PROVIDER=${LLM_PROVIDER:-} # Optional: Override default provider (e.g., "anthropic/claude-3-opus") # Chromium needs shared memory but the host /dev/shm bind was a shared, # writable mount; use a private sized tmpfs instead. shm_size: "1gb"