-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (29 loc) · 532 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (29 loc) · 532 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
version: '3'
services:
dev:
privileged: true
build:
context: .
ports:
- 9001:9001
command: npm run storybook
volumes:
- './src:/usr/app/src'
loki-test:
privileged: true
build:
context: .
environment:
- CI=true
command: npm run loki:test
volumes:
- './.loki:/usr/app/.loki'
loki-update:
privileged: true
build:
context: .
environment:
- CI=true
command: npm run loki:update
volumes:
- './.loki:/usr/app/.loki'