forked from Election-Tech-Initiative/electionguard-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
38 lines (36 loc) · 1005 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
version: '3.8'
services:
admin-app:
build:
dockerfile: ./Dockerfile
context: .
ports:
- 3001:3001
volumes:
- '.:/app'
- '/app/node_modules'
# https://github.com/facebook/create-react-app/issues/8688
stdin_open: true
command: 'serve -l 3001 packages/admin-app/build'
result-app:
build:
dockerfile: ./Dockerfile
context: .
ports:
- 3002:3002
volumes:
- '.:/app'
- '/app/node_modules'
# https://github.com/facebook/create-react-app/issues/8688
stdin_open: true
command: 'serve -l 3002 packages/result-app/build'
storybook:
build:
dockerfile: ./Dockerfile
context: .
ports:
- 6006:6006
volumes:
- '.:/app'
- '/app/node_modules'
command: 'serve -l 6006 packages/library/storybook-static'