forked from vstorm-co/pydantic-deepagents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (26 loc) · 821 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (26 loc) · 821 Bytes
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
services:
# ---- Excalidraw canvas (diagram side panel) ----
excalidraw-canvas:
image: ghcr.io/yctimlin/mcp_excalidraw-canvas:latest
ports:
- "3000:3000"
# ---- DeepResearch app ----
# Option A: local dev — run natively with `uv run deepresearch`, use only excalidraw-canvas
# Option B: Docker — uncomment below (requires packages published on PyPI)
#
# deepresearch:
# build: .
# ports:
# - "8080:8080"
# env_file:
# - .env
# environment:
# - EXCALIDRAW_SERVER_URL=http://excalidraw-canvas:3000
# - EXCALIDRAW_CANVAS_URL=http://localhost:3000
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
# - deepresearch-workspaces:/app/workspaces
# depends_on:
# - excalidraw-canvas
# volumes:
# deepresearch-workspaces: