-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (34 loc) · 904 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (34 loc) · 904 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
version: "3"
services:
train-resolver:
container_name: train-resolver
build: ../train-resolver
ports:
- "3003:3003"
volumes:
- ../train-resolver:/usr/train-resolver
- /usr/train-resolver/node_modules
- /usr/train-resolver/dist
command: [npm, "run", "start:dev"]
manifest-transformer:
container_name: manifest-transformer
build: ../manifest-transformer
ports:
- "3004:3004"
volumes:
- ../manifest-transformer:/usr/manifest-transformer
- /usr/manifest-transformer/node_modules
- /usr/manifest-transformer/dist
command: [npm, "run", "start:dev"]
cache:
container_name: cache
build: .
ports:
- "8080:8080"
volumes:
- ./cache:/data/cache
- ./www:/data/www:ro
- ./conf:/etc/nginx:ro
command: [nginx-debug, "-g", "daemon off;"]
depends_on:
- manifest-transformer