forked from semantica-agi/semantica
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
46 lines (43 loc) · 1.05 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
46 lines (43 loc) · 1.05 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
services:
explorer:
command:
- python
- -m
- uvicorn
- semantica.explorer.app:app
- --host
- 0.0.0.0
- --port
- "8000"
- --reload
- --reload-dir
- /app/semantica
environment:
ALLOWED_ORIGINS: http://localhost:5173,http://127.0.0.1:5173,http://localhost:8000,http://127.0.0.1:8000
FALKORDB_HOST: falkordb
FALKORDB_PORT: "6379"
volumes:
- ./semantica:/app/semantica
- ./pyproject.toml:/app/pyproject.toml:ro
frontend:
image: node:22-alpine
working_dir: /app/explorer
command: sh -c "npm ci && npm run dev -- --host 0.0.0.0"
environment:
VITE_EXPLORER_API_TARGET: http://explorer:8000
VITE_EXPLORER_WS_TARGET: ws://explorer:8000
ports:
- "5173:5173"
volumes:
- ./explorer:/app/explorer
- explorer_node_modules:/app/explorer/node_modules
depends_on:
explorer:
condition: service_started
networks:
- semantica
networks:
semantica:
driver: bridge
volumes:
explorer_node_modules: