-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
55 lines (55 loc) · 1.19 KB
/
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
52
53
54
55
version: "3.8"
services:
features-ui:
build:
context: Source/features-ui
dockerfile: Dockerfile
environment:
- NODE_ENV=development
- CHOKIDAR_USEPOLLING=true
stdin_open: true
tty: true
ports:
- 8080:8080
volumes:
- ./Source/features-ui:/usr/app
- /usr/app/node_modules
samples-web:
build:
context: Samples/Front
dockerfile: Dockerfile
environment:
- NODE_ENV=development
ports:
- 3000:3000
volumes:
- ./Samples/Front:/usr/app
- /usr/app/node_modules
- /usr/app/.next
depends_on:
- samples-api
samples-api:
build:
context: Samples/Back
dockerfile: Dockerfile
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://*:5001
ports:
- 5001:5001
volumes:
- ./Samples/Back:/usr/app
- ./Source/FeatureManagement.UI:/Source/FeatureManagement.UI
depends_on:
- samples-db
samples-db:
build:
context: Samples/Data
dockerfile: Dockerfile
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "sampl3-db"
ports:
- 1433:1433
volumes:
- ./Samples/Data:/usr/config