-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (34 loc) · 894 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (34 loc) · 894 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
services:
app:
build: .
container_name: ai_agent_app
ports:
- "4000:4000"
volumes:
- .:/app
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_HOST=db
- POSTGRES_DB=ai_agent_advisor_dev
- GOOGLE_CLIENT_ID=${GOOGLE_CLIENT_ID}
- GOOGLE_CLIENT_SECRET=${GOOGLE_CLIENT_SECRET}
- HUBSPOT_CLIENT_ID=${HUBSPOT_CLIENT_ID}
- HUBSPOT_CLIENT_SECRET=${HUBSPOT_CLIENT_SECRET}
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
- GEMINI_API_KEY=${GEMINI_API_KEY}
depends_on:
- db
db:
image: pgvector/pgvector:pg16
container_name: ai_agent_db
ports:
- "5432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=ai_agent_advisor_dev
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: