-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.Development.yaml
56 lines (56 loc) · 1.9 KB
/
docker-compose.Development.yaml
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
version: '3'
services:
web:
environment:
ASPNETCORE_URLS: 'http://+:5000;https://+:5001'
ConnectionStrings__DefaultConnection: 'Server=tcp:db,1433;Database=SakhaTyla;User ID=sa;Password=Qwerty123!;MultipleActiveResultSets=false'
IdentityServer__Clients__SakhaTyla.Web.Ng__RedirectUri: 'http://localhost:5010/authentication/login-callback'
IdentityServer__Clients__SakhaTyla.Web.Ng__LogoutUri: 'http://localhost:5010/authentication/logout-callback'
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_Kestrel__Certificates__Default__Password: qwe123
ASPNETCORE_Kestrel__Certificates__Default__Path: /https/aspnet.pfx
Cors__Origin: http://localhost:5010
ports:
- '0.0.0.0:5000:5000'
- '0.0.0.0:5001:5001'
volumes:
- '${USERPROFILE}/.aspnet/https:/https/'
webng:
ports:
- '0.0.0.0:5010:80'
volumes:
- ./volumes/webng/config.json:/usr/share/nginx/html/assets/config.json
site:
environment:
ASPNETCORE_URLS: 'http://+:5000'
ConnectionStrings__DefaultConnection: 'Server=tcp:db,1433;Database=RemBitTeh;User ID=sa;Password=Qwerty123!;MultipleActiveResultSets=false'
ASPNETCORE_ENVIRONMENT: Development
ports:
- '0.0.0.0:5020:5000'
worker:
environment:
ConnectionStrings__DefaultConnection: 'Server=tcp:db,1433;Database=SakhaTyla;User ID=sa;Password=Qwerty123!;MultipleActiveResultSets=false'
DOTNET_ENVIRONMENT: Development
db:
ports:
- '0.0.0.0:1433:1433'
environment:
ACCEPT_EULA: 'Y'
SA_PASSWORD: 'Qwerty123!'
volumes:
- db:/var/opt/mssql
mq:
environment:
RABBITMQ_DEFAULT_USER: 'Manager'
RABBITMQ_DEFAULT_PASS: 'Qwerty123!'
ports:
- '0.0.0.0:4369:4369'
- '0.0.0.0:5672:5672'
- '0.0.0.0:5671:5671'
- '0.0.0.0:15672:15672'
- '0.0.0.0:15671:15671'
volumes:
- mq:/var/lib/rabbitmq
volumes:
db:
mq: