forked from suxrobGM/logistics-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
40 lines (32 loc) · 860 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
40
version: "3.9"
services:
api:
container_name: logistics-api
build:
context: ./
dockerfile: src/Api/Logistics.WebApi/Dockerfile
ports:
- "7000:443"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=https://+:443
identity-server:
container_name: logistics-identity
build:
context: ./
dockerfile: src/Apps/Logistics.IdentityServer/Dockerfile
ports:
- "7001:443"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=https://+:443
admin-app:
container_name: logistics-admin
build:
context: ./
dockerfile: src/Apps/Logistics.AdminApp/Dockerfile
ports:
- "7002:443"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=https://+:443