this repo has no description
1# Development overrides for docker-compose.yml
2# Usage: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
3#
4# This config:
5# - Removes the app container (run locally with bun)
6# - Exposes all service ports to localhost for local development
7# - Mounts local volumes for hot reload where applicable
8
9networks:
10 assistant-net:
11 driver: bridge
12
13services:
14 anthropic-proxy:
15 ports:
16 - "4001:4001"
17
18 letta:
19 ports:
20 - "8283:8283"
21 # Optional: mount local config if needed for development
22 # volumes:
23 # - ./letta-config:/root/.letta
24
25 # Remove app service in dev - run locally with: bun --hot ./src/index.ts
26 app:
27 profiles:
28 - donotstart
29
30volumes:
31 letta-data: