-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
40 lines (37 loc) · 951 Bytes
/
docker-compose.prod.yml
File metadata and controls
40 lines (37 loc) · 951 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
version: '3.8'
services:
brain:
build: .
image: brain:latest
restart: unless-stopped
ports:
- "127.0.0.1:3004:3004"
volumes:
- /opt/brain:/data
environment:
- BRAIN_DIR=/data
- OPENAI_API_KEY=${OPENAI_API_KEY}
- BRAIN_MCP_KEY=${BRAIN_MCP_KEY}
- SUPABASE_URL=${SUPABASE_URL}
- SUPABASE_SERVICE_ROLE_KEY=${SUPABASE_SERVICE_ROLE_KEY}
- BRAIN_HTTP_PORT=3004
- BRAIN_DASHBOARD_ORIGIN=https://brain.cptsd.in
- SEARXNG_URL=http://searxng:8080
networks:
- cptsd-cms_app-network
searxng:
image: searxng/searxng:latest
restart: unless-stopped
ports:
- "127.0.0.1:8081:8080"
volumes:
- ./scripts/searxng-settings.yml:/etc/searxng/settings.yml:ro
environment:
- SEARXNG_BASE_URL=http://localhost:8081
networks:
- cptsd-cms_app-network
volumes:
searxng-data:
networks:
cptsd-cms_app-network:
external: true