-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
67 lines (57 loc) · 1.25 KB
/
docker-compose.dev.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
version: "3.8"
services:
auth:
ports:
- "27015:5000"
environment:
- ASPNETCORE_ENVIRONMENT=Development
auth_db:
ports:
- "27016:27017"
notification:
ports:
- "29960:5000"
environment:
- ASPNETCORE_ENVIRONMENT=Development
notification_db:
ports:
- "29900:27017"
account:
ports:
- "28960:5000"
environment:
- ASPNETCORE_ENVIRONMENT=Development
account_db:
ports:
- "6446:5432"
statistics:
ports:
- "29500:5000"
environment:
- ASPNETCORE_ENVIRONMENT=Development
statistics_db:
ports:
- "29550:27017"
ocelot:
environment:
- ASPNETCORE_ENVIRONMENT=Development
volumes:
- ${APPDATA}\Microsoft\UserSecrets:/root/.microsoft/usersecrets:ro
- ${USERPROFILE}\.aspnet\https:/root/.aspnet/https:ro
elasticsearch:
volumes:
- ${APPDATA}/ASP.NET/Volumes/Elastic:/usr/share/elasticsearch/data
rabbitmq:
ports:
- "15672:15672"
prometheus:
volumes:
- ${APPDATA}/ASP.NET/Volumes/Prometheus:/prometheus
grafana:
volumes:
- ${APPDATA}/ASP.NET/Volumes/grafana:/var/lib/grafana
sender:
ports:
- "8188:5000"
environment:
- ASPNETCORE_ENVIRONMENT=Development