We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e294c42 commit dd786ceCopy full SHA for dd786ce
1 file changed
docker-compose.yml
@@ -10,6 +10,22 @@ services:
10
- vibe-sessions:/app/agent/sessions
11
restart: unless-stopped
12
13
+ frontend:
14
+ image: node:20
15
+ working_dir: /app
16
+ ports:
17
+ - "5899:5899"
18
+ volumes:
19
+ - ./frontend:/app
20
+ environment:
21
+ - VITE_API_URL=http://vibe-trading:8899
22
+ command: sh -c "npm install && npm run dev -- --host --port 5899"
23
+ profiles:
24
+ - frontend
25
+ depends_on:
26
+ vibe-trading:
27
+ condition: service_started
28
+
29
volumes:
30
vibe-runs:
31
vibe-sessions:
0 commit comments