-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
45 lines (40 loc) · 869 Bytes
/
docker-compose.dev.yml
File metadata and controls
45 lines (40 loc) · 869 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: neurorift
services:
neurorift-core:
build:
target: base
volumes:
- ./modules:/app/modules
- ./utils:/app/utils
- ./prompts:/app/prompts
- ./configs:/app/configs
- ./ai_wrapper:/app/ai_wrapper
environment:
LOG_LEVEL: debug
ports:
- "127.0.0.1:8766:8766"
command: >
uvicorn modules.web.bridge_server:app --host 0.0.0.0 --port 8766 --reload --log-level debug
rust-engine:
ports:
- "127.0.0.1:8765:8765"
environment:
RUST_LOG: debug
gateway:
ports:
- "127.0.0.1:18789:18789"
web-ui:
build:
target: builder
volumes:
- ./web-ui:/app
- /app/node_modules
- /app/.next
ports:
- "3000:3000"
environment:
NODE_ENV: development
command: npm run dev
ollama:
ports:
- "127.0.0.1:11434:11434"