-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompose.yaml
42 lines (41 loc) · 830 Bytes
/
compose.yaml
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
services:
starbridge:
build: .
env_file:
- path: .env
required: true
develop:
watch:
- path: src
action: rebuild
restart: no
tty: true
stdin_open: true
healthcheck:
test: [ "CMD-SHELL", "pgrep -x uv || exit 1" ]
interval: 5s
timeout: 1s
retries: 0
start_period: 5s
start_interval: 1s
starbridge_inspector:
build: .
env_file:
- path: .env
required: true
develop:
watch:
- path: src
action: rebuild
command: mcp inspect
restart: always
ports:
- "5173:5173"
- "3000:3000"
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:5173" ]
interval: 5s
timeout: 2s
retries: 3
start_period: 5s
start_interval: 1s