-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
39 lines (31 loc) · 961 Bytes
/
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
services:
ocelot-api-gateway:
container_name: OcelotApiGateway
image: mirolimmajidov/ocelot.apigateway:latest
identity-api:
container_name: IdentityService
image: mirolimmajidov/identity.api:latest
identity-MySqlDB:
container_name: IdentityService_MySqlDB
image: mysql:latest
job-api:
container_name: JobService
image: mirolimmajidov/job.api:latest
job-SqlServerDB:
container_name: JobService_SqlServerDB
image: "mcr.microsoft.com/mssql/server:2022-latest"
payment-api:
container_name: PaymentService
image: mirolimmajidov/payment.api:latest
payment-mongoDB:
container_name: PaymentService_MongoDB
image: mongo:latest
payment-redisDB:
container_name: PaymentService_RedisDB
image: redis:latest
rabbitmq:
container_name: RabbitMQ_MessageBroker
image: rabbitmq:3-management
environment:
RABBITMQ_DEFAULT_USER: "guest"
RABBITMQ_DEFAULT_PASS: "guest"