-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
51 lines (46 loc) · 935 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
42
43
44
45
46
47
48
49
50
51
version: "3.8"
services:
sql-server:
build:
context: ./Database
environment:
SA_PASSWORD: "C@pgemini2017"
ACCEPT_EULA: "Y"
volumes:
- mssql-volume:/var/opt/mssql
ports:
- 1433:1433
networks:
backend-net:
aliases: [database]
dotnet-backend:
container_name: net
build:
context: ./Templates/WebAPI
dockerfile: ./Devon4Net.Application.WebAPI/Dockerfile
networks:
backend-net:
aliases: [backend]
ports:
- 8081:8081
frontend:
container_name: angular
build:
context: ./FrontEnd
networks:
backend-net:
aliases: [backend]
reverse-proxy:
build: ./ReverseProxy
restart: always
container_name: 'mts_reverse_proxy'
ports:
- 8080:80
networks:
backend-net:
aliases: [backend]
networks:
backend-net:
driver: bridge
volumes:
mssql-volume: