forked from danskernesdigitalebibliotek/dpl-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (39 loc) · 839 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (39 loc) · 839 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
38
39
40
41
42
version: '3.7'
services:
node:
image: node:16
user: node
init: true
working_dir: /home/node/app
volumes:
- root:/home/node/app
- ~/.npmrc:/home/node/.npmrc
ports:
- "80"
command: 'yarn dev'
environment:
VIRTUAL_HOST: dpl-react.docker
VIRTUAL_PORT: 80
STORYBOOK_CLIENT_ID: bdc1d425-9117-4867-acb9-c7307ddc2e0f
YARN_CACHE_FOLDER: /home/node/app/.cache
wiremock:
image: up9inc/wiremock-studio:2.32.0-18
ports:
- "9000"
- "8100"
volumes:
- wiremock_data:/home/wiremock
environment:
VIRTUAL_HOST: fbs-mock.docker
VIRTUAL_PORT: 8100
volumes:
root:
driver_opts:
type: none
device: $PWD
o: bind
wiremock_data:
driver_opts:
type: none
device: $PWD/.docker/wiremock
o: bind