-
-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathdocker-compose.override.yml.example
More file actions
50 lines (43 loc) · 1.39 KB
/
Copy pathdocker-compose.override.yml.example
File metadata and controls
50 lines (43 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Docker Compose Override Configuration Example
# Copy this file to docker-compose.override.yml and customize for your local environment
# This file will override settings in docker-compose.yml without modifying the main file
services:
backend:
# Development mode
command: python -m maverick.server --transport http --host 0.0.0.0 --port 8003
environment:
# Override for development
- LOG_LEVEL=debug
# Add any additional API keys you want to test
# - EXA_API_KEY=your_key_here
# - LLM_PROVIDER=anthropic
# - LLM_API_KEY=your_key_here
# - LLM_MODEL=claude-sonnet-4-5
# Performance tuning
- CACHE_ENABLED=true
- CACHE_TTL_SECONDS=3600
# Mount additional volumes for development
volumes:
- ./tests:/app/tests
# Enable stdin and tty for interactive debugging
stdin_open: true
tty: true
# Optional: Add pgAdmin for database management
# pgadmin:
# image: dpage/pgadmin4:latest
# environment:
# - PGADMIN_DEFAULT_EMAIL=admin@maverick.local
# - PGADMIN_DEFAULT_PASSWORD=admin
# ports:
# - "5050:80"
# depends_on:
# - postgres
# Optional: Add Redis Commander for cache inspection
# redis-commander:
# image: rediscommander/redis-commander:latest
# environment:
# - REDIS_HOSTS=local:redis:6379
# ports:
# - "8081:8081"
# depends_on:
# - redis