-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
36 lines (34 loc) · 965 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
version: '3.4'
services:
identity:
build:
context: .
dockerfile: Identity.Dockerfile
image: dex-wallet.identity:latest
environment:
- ASPNETCORE_ENVIRONMENT= ${ASPNETCORE_ENVIRONMENT}
- AppSettings:SigningKey= ${SIGNING_KEY}
- AppSettings:RefreshTokenTTL= ${REFRESH_TOKEN_TTL}
ports:
- "8080:80"
core:
build:
context: .
dockerfile: Core.Dockerfile
image: dex-wallet.core:latest
environment:
- ASPNETCORE_ENVIRONMENT= ${ASPNETCORE_ENVIRONMENT}
- AppSettings:IdentityServiceUrl= ${IDENTITY_SERVICE_URL}
ports:
- "8081:80"
exchange:
build:
context: .
dockerfile: Exchange.Dockerfile
image: dex-wallet.exchange:latest
environment:
- ASPNETCORE_ENVIRONMENT= ${ASPNETCORE_ENVIRONMENT}
- AppSettings:IdentityServiceUrl= ${IDENTITY_SERVICE_URL}
- AppSettings:CoreServiceUrl= ${CORE_SERVICE_URL}
ports:
- "8082:80"