-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
129 lines (120 loc) · 2.96 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
version: "3.5"
services:
backend:
image: nginx:latest
container_name: backend
ports:
- 3001:3001
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ./nginx-proxy.conf:/etc/nginx/proxy.conf:ro
networks:
- hey-taxi-network
depends_on:
- identity-api
- location-api
profiles:
- "api"
- "proxy"
identity-api:
image: ghcr.io/orkungursel/hey-taxi-identity-api:latest
container_name: identity-api
environment:
- MONGO_URI=mongodb://mongo:27017
volumes:
- "./certs/private.pem:/etc/certs/access-token-private-key.pem:ro"
- "./certs/public.pem:/etc/certs/access-token-public-key.pem:ro"
- "./certs/private.pem:/etc/certs/refresh-token-private-key.pem:ro"
- "./certs/public.pem:/etc/certs/refresh-token-public-key.pem:ro"
networks:
- hey-taxi-network
depends_on:
- mongo
profiles:
- "api"
location-api:
image: ghcr.io/orkungursel/hey-taxi-location-api:latest
container_name: location-api
environment:
- REDIS_ADDR=redis:6379
- AUTH_GRPC_HOST=identity-api
- AUTH_GRPC_PORT=50051
volumes:
- "./certs/public.pem:/etc/certs/access-token-public-key.pem:ro"
networks:
- hey-taxi-network
depends_on:
- redis
profiles:
- "api"
vehicle-api:
image: ghcr.io/orkungursel/hey-taxi-vehicle-api:latest
container_name: vehicle-api
environment:
- ConnectionStrings__DefaultConnection=User ID=postgres;Password=postgres;Server=postgres;Port=5432;Database=postgres;Integrated Security=true;Pooling=true;
- Services__UserDetailsServiceUri=http://identity-api:50051
volumes:
- "./certs/public.pem:/etc/certs/access-token-public-key.pem:ro"
networks:
- hey-taxi-network
depends_on:
- postgres
profiles:
- "api"
mongo:
image: mongo
container_name: mongo
ports:
- "27017:27017"
volumes:
- mongo-volume:/data/db
networks:
- hey-taxi-network
profiles:
- "infrastructure"
redis:
image: redis:latest
container_name: redis
ports:
- "6379:6379"
volumes:
- redis-volume:/data
networks:
- hey-taxi-network
profiles:
- "infrastructure"
postgres:
image: postgres:latest
container_name: postgres
ports:
- "5432:5432"
volumes:
- postgres-volume:/var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
networks:
- hey-taxi-network
profiles:
- "infrastructure"
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
ports:
- "5672:5672"
- "15672:15672"
volumes:
- rabbitmq-volume:/var/lib/rabbitmq
networks:
- hey-taxi-network
profiles:
- "rabbit"
volumes:
redis-volume:
mongo-volume:
postgres-volume:
rabbitmq-volume:
networks:
hey-taxi-network:
name: hey-taxi-network
driver: bridge