-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcompose.yaml
49 lines (45 loc) · 1.26 KB
/
compose.yaml
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
services:
fudis-storybook:
build:
context: ./ngx-fudis/
target: dev
image: fudis
container_name: fudis-storybook
tty: true
ports:
- 6006:6006
volumes:
- ./ngx-fudis/projects/ngx-fudis/src:/usr/src/app/projects/ngx-fudis/src
- ./ngx-fudis/projects/documentation:/usr/src/app/projects/documentation
fudis-lib:
image: fudis
container_name: fudis-lib
command: npm run build:watch
volumes:
- ./ngx-fudis/projects/ngx-fudis/src:/usr/src/app/projects/ngx-fudis/src
- ./ngx-fudis/dist/ngx-fudis:/usr/src/app/dist/ngx-fudis
fudis-sandbox:
image: fudis
container_name: fudis-sandbox
command: npm start
tty: true
ports:
- 4200:4200
volumes:
- ./ngx-fudis/projects/dev/src:/usr/src/app/projects/dev/src
- ./ngx-fudis/dist/ngx-fudis:/usr/src/app/dist/ngx-fudis
fudis-vr:
build: ./test
container_name: fudis-vr
tty: true
ports:
- 9323:9323
environment:
- PLAYWRIGHT_BASE_URL=http://fudis-storybook:6006
- CONTAINER=true
volumes:
- ./test/visual-regression:/usr/src/app/visual-regression
- ./test/playwright-report:/usr/src/app/playwright-report
- ./test/test-results:/usr/src/app/test-results
volumes:
lib: