-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
77 lines (70 loc) · 2.28 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: '3.4'
services:
db:
image: mcr.microsoft.com/azure-sql-edge
environment:
MSSQL_SA_PASSWORD: ${SA_PASSWORD}
ACCEPT_EULA: "Y"
ports:
- "1433"
identityserver:
image: dotnetflix-identity
build: ./src/Identity
ports:
- '5001:5001'
depends_on:
- db
environment:
- ConnectionStrings__DefaultConnection=Server=db;Database=DotnetflixDB;User Id=sa;Password=${SA_PASSWORD};TrustServerCertificate=true;Encrypt=true
- ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_Kestrel__Certificates__Default__Password=${CERT_PASSWORD}
- ASPNETCORE_Kestrel__Certificates__Default__Path=/app/https/cert.pfx
api:
image: dotnetflix-api
build:
context: .
dockerfile: Dockerfile.API
ports:
- '5002:5002'
environment:
- ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_Kestrel__Certificates__Default__Password=${CERT_PASSWORD}
- ASPNETCORE_Kestrel__Certificates__Default__Path=/app/https/cert.pfx
- Authority=https://identityserver:5001
- ServiceConfig__VideosClient__BaseUrl=https://videos:5003
- ServiceConfig__SubscriptionsClient__BaseUrl=https://subscriptions:5004
videos:
image: dotnetflix-videos
build:
context: .
dockerfile: Dockerfile.Videos
ports:
- '5003:5003'
environment:
- ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_Kestrel__Certificates__Default__Password=${CERT_PASSWORD}
- ASPNETCORE_Kestrel__Certificates__Default__Path=/app/https/cert.pfx
- Authentication__Schemes__Bearer__Authority=https://identityserver:5001
- YouTube__ApiKey=${YOUTUBE_API_KEY}
subscriptions:
image: dotnetflix-subscriptions
build: ./src/DotNetFlix.SubscriptionService
ports:
- '5004:5004'
environment:
- ASPNETCORE_ENVIRONMENT=Docker
- ASPNETCORE_Kestrel__Certificates__Default__Password=${CERT_PASSWORD}
- ASPNETCORE_Kestrel__Certificates__Default__Path=/app/https/cert.pfx
- Authentication__Schemes__Bearer__Authority=https://identityserver:5001
web:
image: dotnetflix-web
build:
context: .
dockerfile: Dockerfile.Web
ports:
- '5005:443'
- '8080:80'
environment:
- ASPNETCORE_ENVIRONMENT=Docker
volumes:
- ${DEVCERTS_PATH}:/https:ro