-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
41 lines (40 loc) · 943 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
41
version: '3.4'
services:
erazer.sso.identityserver:
image: erazerbrecht/erazersso-identityserver
build:
context: Erazer.Authorization
dockerfile: Dockerfile
ports:
- "5000:5000"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- DOTNET_PRINT_TELEMETRY_MESSAGE=false
erazer.sso.api:
image: erazerbrecht/erazersso-api
build:
context: Erazer.API
dockerfile: Dockerfile
ports:
- "5002:5002"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- DOTNET_PRINT_TELEMETRY_MESSAGE=false
erazer.sso.web:
image: erazerbrecht/erazersso-web
build:
context: Erazer.Web
dockerfile: Dockerfile
depends_on:
- "erazer.sso.identityserver"
- "redis"
ports:
- "8888:8888"
environment:
- host=10.0.75.1
- NODE_ENV=production
redis:
container_name: redis
image: redis
ports:
- "6380:6379"