-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
131 lines (120 loc) · 2.68 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
130
131
version: "3"
services:
frontend:
image: frontend
container_name: frontend
build:
context: .
dockerfile: Frontend/Dockerfile
ports:
- "4999:80"
depends_on:
- gateway_api
volumes:
- nginx:/var/cache/nginx
gateway_api:
image: gateway_api
container_name: gateway_api
build:
context: .
dockerfile: Gateway.Api/Dockerfile
environment:
ASPNETCORE_ENVIRONMENT: Development
ports:
- "5000:80"
depends_on:
- support_tickets_api
- authentication_api
- users_api
support_tickets_api:
image: support_tickets_api
container_name: support_tickets_api
build:
context: .
dockerfile: SupportTickets.Api/Dockerfile
environment:
ASPNETCORE_ENVIRONMENT: Development
ports:
- "5002:80"
depends_on:
- authentication_api
- users_api
- postgres_db
- rabbit_mq_initializer
authentication_api:
image: authentication_api
container_name: authentication_api
build:
context: .
dockerfile: Authentication.Api/Dockerfile
environment:
ASPNETCORE_ENVIRONMENT: Development
ports:
- "5001:80"
depends_on:
- postgres_db
- users_api
users_api:
image: users_api
container_name: users_api
build:
context: .
dockerfile: Users.Api/Dockerfile
environment:
ASPNETCORE_ENVIRONMENT: Development
ports:
- "5003:80"
depends_on:
- postgres_db
- rabbit_mq_initializer
resources_api:
image: resources_api
container_name: resources_api
build:
context: .
dockerfile: Resources.Api/Dockerfile
ports:
- "5004:80"
depends_on:
- postgres_db
notification_api:
image: notification_api
container_name: notification_api
build:
context: .
dockerfile: Notification.Api/Dockerfile
ports:
- "5005:80"
rabbit_mq_initializer:
image: rabbit_mq_initializer
container_name: rabbit_mq_initializer
build:
context: .
dockerfile: RabbitMqInitializer/Dockerfile
depends_on:
- rabbit_mq
postgres_db:
image: postgres:latest
container_name: postgres_db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: "password"
ports:
- "5432:5432"
volumes:
- postgresdb:/var/lib/postgresql/data
rabbit_mq:
image: rabbitmq:3.10.7-management
container_name: rabbit_mq
environment:
RABBITMQ_DEFAULT_USER: rabbitmq
RABBITMQ_DEFAULT_PASS: "password"
ports:
- "15672:15672"
- "5672:5672"
volumes:
- rabbitmq:/var/lib/rabbitmq
volumes:
postgresdb:
rabbitmq:
nginx: