-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (44 loc) · 1017 Bytes
/
docker-compose.yml
File metadata and controls
48 lines (44 loc) · 1017 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
version: '3.8'
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: meetlyai-backend
ports:
- "8000:8000"
environment:
- APP_NAME=${APP_NAME:-MeetlyAI}
- ENV=${ENV:-development}
- GEMINI_API_KEY=${GEMINI_API_KEY}
- GEMINI_MODEL=${GEMINI_MODEL:-gemini-2.0-flash-exp}
- HOST=0.0.0.0
- PORT=8000
env_file:
- ./backend/.env
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
- meetlyai-network
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
args:
- VITE_API_URL=http://localhost:8000
container_name: meetlyai-frontend
ports:
- "3000:80"
depends_on:
- backend
restart: unless-stopped
networks:
- meetlyai-network
networks:
meetlyai-network:
driver: bridge