-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (45 loc) · 1.12 KB
/
docker-compose.yml
File metadata and controls
47 lines (45 loc) · 1.12 KB
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
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: chatbot-backend
ports:
- "8000:8000"
volumes:
# Persist database
- ./backend/data:/app/data
# Optional: Mount .env file for API keys (if exists)
- ./backend/.env:/app/.env:ro
environment:
- PYTHONUNBUFFERED=1
restart: unless-stopped
healthcheck:
test: [ "CMD", "python3", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health').read()" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 20s
networks:
- chatbot-network
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: chatbot-frontend
ports:
- "3000:3000"
depends_on:
- backend
restart: unless-stopped
healthcheck:
test: [ "CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/health" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 20s
networks:
- chatbot-network
networks:
chatbot-network:
driver: bridge