-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
69 lines (65 loc) · 1.76 KB
/
Copy pathdocker-compose.yml
File metadata and controls
69 lines (65 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
services:
# PostgreSQL Database
postgres:
image: postgres:16-alpine
container_name: taalai-postgres
environment:
POSTGRES_USER: taalai
POSTGRES_PASSWORD: taalai_password_change_in_production
POSTGRES_DB: taalai
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./shared/supabase-schema.sql:/docker-entrypoint-initdb.d/schema.sql
networks:
- taalai-network
# FastAPI Backend
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: taalai-backend
environment:
DATABASE_URL: ${DATABASE_URL}
SUPABASE_URL: ${SUPABASE_URL}
NEXT_PUBLIC_SUPABASE_URL: ${NEXT_PUBLIC_SUPABASE_URL}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${NEXT_PUBLIC_SUPABASE_ANON_KEY}
ALLOWED_ORIGINS: http://localhost:3000,http://localhost:3001
NEXT_PUBLIC_API_URL: http://localhost:8000
OPENAI_API_KEY: ${OPENAI_API_KEY}
ports:
- "8000:8000"
depends_on:
- postgres
volumes:
- ./backend:/app
networks:
- taalai-network
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
# Next.js Frontend
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: taalai-frontend
environment:
NEXT_PUBLIC_API_URL: http://localhost:8000
NEXT_PUBLIC_SUPABASE_URL: ${NEXT_PUBLIC_SUPABASE_URL}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${NEXT_PUBLIC_SUPABASE_ANON_KEY}
ports:
- "3000:3000"
depends_on:
- backend
volumes:
- ./frontend:/app
- /app/node_modules
- /app/.next
networks:
- taalai-network
command: npm run dev
volumes:
postgres_data:
networks:
taalai-network:
driver: bridge