forked from Trivenidigital/gecko-alpha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 931 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (40 loc) · 931 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
# NOTE: The mirofish service expects the MiroFish repo to be cloned into ./mirofish/
# Clone it before running: git clone <mirofish-repo-url> ./mirofish
services:
mirofish:
build:
context: ./mirofish
dockerfile: Dockerfile
ports:
- "5001:5001"
environment:
- LLM_API_KEY=${LLM_API_KEY:-}
- ZEP_API_KEY=${ZEP_API_KEY:-}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5001/health"]
interval: 30s
timeout: 10s
retries: 3
networks:
- scout-net
scout:
build:
context: .
dockerfile: Dockerfile
depends_on:
mirofish:
condition: service_healthy
env_file:
- .env
environment:
- MIROFISH_URL=http://mirofish:5001
- DB_PATH=/app/data/scout.db
volumes:
- scout-data:/app/data
networks:
- scout-net
networks:
scout-net:
driver: bridge
volumes:
scout-data: