-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
74 lines (65 loc) · 1.44 KB
/
docker-compose.yml
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
70
71
72
73
74
version: '3.8'
services:
frontend:
image: ayush272002/zapier-frontend:latest
environment:
- NEXT_PUBLIC_API_BASE_URL=http://localhost:8001
- NEXT_PUBLIC_WEBHOOK_URL=http://localhost:8000
ports:
- "3000:3000"
primary-backend:
image: ayush272002/zapier-primary-backend:latest
environment:
- PORT=8001
- JWT_SECRET=
- DATABASE_URL=
ports:
- "8001:8001"
networks:
- monitoring
hooks:
image: ayush272002/zapier-hooks:latest
environment:
- PORT=8000
- DATABASE_URL=
ports:
- "8000:8000"
processor:
image: ayush272002/zapier-processor:latest
environment:
- DATABASE_URL=
- KAFKA_URI=
- KAFKA_USERNAME=
- KAFKA_PASSWORD=
worker:
image: ayush272002/zapier-worker:latest
environment:
- SOL_PRIVATE_KEY=
- SMTP_HOST=
- SMTP_PORT=587
- SMTP_USERNAME=
- SMTP_PASSWORD=
- SMTP_SENDER=
- SOL_RPC_URL=
- DATABASE_URL=
- KAFKA_URI=
- KAFKA_USERNAME=
- KAFKA_PASSWORD=
prometheus:
image: prom/prometheus:latest
volumes:
- ./monitoring/prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- "9090:9090"
networks:
- monitoring
grafana:
image: grafana/grafana:latest
ports:
- "3001:3000"
networks:
- monitoring
environment:
- GF_SECURITY_ADMIN_PASSWORD=admin
networks:
monitoring: