-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (30 loc) · 784 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (30 loc) · 784 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
version: '3.4'
x-project-name: search-your-position
services:
sqlserver:
image: "mcmoe/mssqldocker"
environment:
SA_PASSWORD: "SQLDevPass1"
ACCEPT_EULA: "Y"
MSSQL_PID: "Express"
MSSQL_DB: "main_db"
MSSQL_USER: "main_user"
MSSQL_PASSWORD: "MainUser1"
ports:
- "1433:1433"
angular.asp_searchposition:
image: ${DOCKER_REGISTRY-}angularaspsearchposition
build:
context: .
dockerfile: Angular.ASP_SearchPosition/Dockerfile
ports:
- "5080:5080"
clientapp:
build:
context: ./Angular.ASP_SearchPosition/ClientApp
dockerfile: Dockerfile
ports:
- "8080:80"
volumes:
- ./Angular.ASP_SearchPosition/ClientApp:/usr/share/nginx/html
- /app/node_modules