-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
41 lines (37 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:
frontend:
image: frontend
build:
context: .
dockerfile: Frontend/frontend-new/Dockerfile
depends_on:
- backend
ports:
- "8080:80"
backend:
image: backend
build:
context: .
dockerfile: Backend/Dockerfile
depends_on:
- sql.data
- identityserver
ports:
- "8182:8182"
identityserver:
image: identityserver
build:
context: .
dockerfile: Identity/IdentityServerExample-IdentityServer.WebApplication.Testing.Features/Dockerfile
ports:
- "7199:7199"
depends_on:
- sql.data
sql.data:
image: mcr.microsoft.com/mssql/server:2019-latest
environment:
- ConnectionString=Server=host.docker.internal;Initial Catalog=TrainingHelperAlevel;Integrated Security=True;MultipleActiveResultSets=true;UserId=DESKTOP-7HK7ORN\Кирилл;
- ACCEPT_EULA=Y
ports:
- "1433:1433"