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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# RavenClaws Development Environment
# Includes LiteLLM proxy for local testing
services:
ravenclaws:
build:
context: .
dockerfile: Dockerfile
container_name: ravenclaws-dev
environment:
- RUST_LOG=debug
- RAVENCLAW__LLM__ENDPOINT=http://litellm:4000
- LITELLM_API_KEY=${LITELLM_API_KEY:-sk-test}
volumes:
- ./config:/config:ro
- workspace:/workspace
ports:
- "8080:8080"
depends_on:
- litellm
networks:
- ravenclaws-net
security_opt:
- no-new-privileges:true
read_only: true
tmpfs:
- /tmp:size=100M
litellm:
image: ghcr.io/berriai/litellm:main
container_name: litellm-dev
environment:
- DATABASE_URL=sqlite:///db.sqlite
- LITELLM_MASTER_KEY=${LITELLM_API_KEY:-sk-test}
volumes:
- ./config/litellm-config.yaml:/app/config.yaml:ro
- litellm-data:/app/data
ports:
- "4000:4000"
networks:
- ravenclaws-net
security_opt:
- no-new-privileges:true
# Optional: RavenFabric for swarm/supervisor coordination
# Uncomment to enable multi-agent orchestration.
# RavenFabric agent binary is included in the RavenClaws container image.
# ravenfabric:
# image: ravenfabric/ravenfabric:latest
# container_name: ravenfabric-dev
# environment:
# - RF_AUTH_TOKEN=${RAVENFABRIC_TOKEN:-rf-test}
# ports:
# - "8080:8080"
# networks:
# - ravenclaws-net
volumes:
workspace:
litellm-data:
networks:
ravenclaws-net:
driver: bridge
ipam:
config:
- subnet: 172.28.0.0/16