-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (40 loc) · 910 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
54 lines (40 loc) · 910 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
46
47
48
49
50
51
52
53
54
services:
brigid:
build:
context: ./
dockerfile: ./docker/Dockerfile
volumes:
- ${PWD}/:/repository
- ${PWD}/.env:/repository/.env
command:
- "poetry"
- "run"
- "uvicorn"
- "brigid.asgi:app"
- "--host"
- "0.0.0.0"
- "--port"
- "8000"
- "--workers"
- "1"
- "--reload"
- "--reload-include"
- "*"
ports:
- "8000:8000"
environment:
- BRIGID_LIBRARY_DIRECTORY # pass if exists on the host
mcp-inspector:
image: ghcr.io/modelcontextprotocol/inspector:latest
network_mode: "host"
environment:
DANGEROUSLY_OMIT_AUTH: true
# ports:
# - "6274:6274"
# - "6277:6277"
ngrok:
image: ngrok/ngrok:latest
# network_mode: "host"
command: http brigid:8000 --log=stdout
environment:
NGROK_AUTHTOKEN: ${NGROK_AUTHTOKEN}