-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (44 loc) · 1.2 KB
/
docker-compose.yml
File metadata and controls
48 lines (44 loc) · 1.2 KB
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
version: '3.4'
services:
sqldatanotification:
image: mcr.microsoft.com/mssql/server:2019-latest
container_name: mssql-container-notification
environment:
- SA_PASSWORD=Person123
- ACCEPT_EULA=Y
sqldataexception:
image: mcr.microsoft.com/mssql/server:2019-latest
container_name: mssql-container-exception
environment:
- SA_PASSWORD=Person123
- ACCEPT_EULA=Y
notificationpattern:
image: ${DOCKER_REGISTRY-}notificationpattern
container_name: notification-pattern-container
build:
context: .
dockerfile: NotificationPattern/Dockerfile
environment:
- ASPNETCORE_ENVIRONMENT=Development
ports:
- "8000:80"
- "8001:443"
depends_on:
- "sqldatanotification"
volumes:
- ./Infra/DatabaseScripts:/app/infra
exceptionproject:
image: ${DOCKER_REGISTRY-}exceptionproject
container_name: exception-project-container
build:
context: .
dockerfile: ExceptionProject/Dockerfile
environment:
- ASPNETCORE_ENVIRONMENT=Development
ports:
- "1000:80"
- "1001:443"
depends_on:
- "sqldataexception"
volumes:
- ./Infra/DatabaseScripts:/app/infra