The docker-compose.yml had an `environment:` section with variable
substitutions (${VAR:-}) that was overriding values from .llm.env with
empty strings.
- Commented out the `environment:` section to prevent overwrites
- Added clear warning comment explaining the override behavior
- .llm.env values now load directly into container without interference
51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
version: '3.8'
|
|
|
|
# Shared configuration for all environments
|
|
x-base-config: &base-config
|
|
ports:
|
|
- "11235:11235" # Gunicorn port
|
|
env_file:
|
|
- .llm.env # API keys (create from .llm.env.example)
|
|
# Uncomment to set default environment variables (will overwrite .llm.env)
|
|
# environment:
|
|
# - 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")
|
|
volumes:
|
|
- /dev/shm:/dev/shm # Chromium performance
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 4G
|
|
reservations:
|
|
memory: 1G
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:11235/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
user: "appuser"
|
|
|
|
services:
|
|
crawl4ai:
|
|
# 1. Default: Pull multi-platform test image from Docker Hub
|
|
# 2. Override with local image via: IMAGE=local-test docker compose up
|
|
image: ${IMAGE:-unclecode/crawl4ai:${TAG:-latest}}
|
|
|
|
# Local build config (used with --build)
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
INSTALL_TYPE: ${INSTALL_TYPE:-default}
|
|
ENABLE_GPU: ${ENABLE_GPU:-false}
|
|
|
|
# Inherit shared config
|
|
<<: *base-config |