-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
44 lines (38 loc) · 941 Bytes
/
compose.yaml
File metadata and controls
44 lines (38 loc) · 941 Bytes
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
services:
sql-server5:
image: mcr.microsoft.com/azure-sql-edge
environment:
SA_PASSWORD: "reallyStrongPwd123"
ACCEPT_EULA: "Y"
ports:
- 1433:1433
networks:
- my-network5
container_name: sql-server5 # SQL Server konteynerının adını belirledik
web-api:
build:
context: .
dockerfile: ./SqlAPITest/Dockerfile # Web API için Dockerfile'ınızın adını ve yolunu belirtin
depends_on:
- sql-server5
ports:
- 8084:80
networks:
- my-network5
environment:
- ASPNETCORE_ENVIRONMENT=Development
mvc-app:
build:
context: .
dockerfile: Dockerfile # MVC uygulaması için Dockerfile'ınızın adını ve yolunu belirtin
depends_on:
- sql-server5
- web-api
ports:
- 8086:80
networks:
- my-network5
environment:
- ASPNETCORE_ENVIRONMENT=Development
networks:
my-network5: