-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
52 lines (52 loc) · 1.63 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
version: '3'
services:
frontend_Portal:
image: microsoft/dotnet:1.0-runtime
command: bash -c "cd /app && dotnet MyCompany.Frontend.Portal.dll"
volumes:
- ./MyCompany.Frontend.Portal/out:/app
ports:
- "5001:5001"
environment:
- ASPNETCORE_URLS=http://*:5001
- ASPNETCORE_ENVIRONMENT=Production
gateway_Portal:
image: microsoft/dotnet:1.0-runtime
command: bash -c "cd /app && dotnet MyCompany.Gateways.Portal.dll"
volumes:
- ./MyCompany.Gateways.Portal/out:/app
ports:
- "5002:5002"
environment:
- ASPNETCORE_URLS=http://*:5002
- ASPNETCORE_ENVIRONMENT=Production
frontend_savingsfree:
image: microsoft/dotnet:1.0-runtime
command: bash -c "cd /app && dotnet MyCompany.Frontend.Portal.dll"
volumes:
- ./MyCompany.Frontend.Portal/out:/app
ports:
- "5003:5003"
environment:
- ASPNETCORE_URLS=http://*:5003
- ASPNETCORE_ENVIRONMENT=Production
gateway_savingsfree:
image: microsoft/dotnet:1.0-runtime
command: bash -c "cd /app && dotnet MyCompany.Gateways.Portal.dll"
volumes:
- ./MyCompany.Gateways.Portal/out:/app
ports:
- "5004:5004"
environment:
- ASPNETCORE_URLS=http://*:5004
- ASPNETCORE_ENVIRONMENT=Production
security_server:
image: microsoft/dotnet:1.0-runtime
command: bash -c "cd /app && dotnet MyCompany.Security.Server.dll"
volumes:
- ./MyCompany.Security.Server/out:/app
ports:
- "5005:5005"
environment:
- ASPNETCORE_URLS=http://*:5005
- ASPNETCORE_ENVIRONMENT=Production