-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 1.04 KB
/
docker-compose.yml
File metadata and controls
44 lines (40 loc) · 1.04 KB
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
version: '2'
services:
modduo-builder:
image: mcb-builder-modduo
environment:
- MCB_BUILDER_PORT=8001
- MCB_BUILDER_TARGET=modduo-new
ports:
- "8001:8001"
modduox-builder:
image: mcb-builder-modduox
environment:
- MCB_BUILDER_PORT=8002
- MCB_BUILDER_TARGET=modduox-new
ports:
- "8002:8002"
moddwarf-builder:
image: mcb-builder-moddwarf
environment:
- MCB_BUILDER_PORT=8003
- MCB_BUILDER_TARGET=moddwarf-new
ports:
- "8003:8003"
darkglass-anagram-builder:
image: mcb-builder-darkglass-anagram
environment:
- MCB_BUILDER_PORT=8004
- MCB_BUILDER_TARGET=darkglass-anagram
ports:
- "8004:8004"
webserver:
image: mcb-webserver
depends_on:
- modduo-builder
- modduox-builder
- moddwarf-builder
ports:
- "8010:8000"
volumes:
- ./storage:/mnt/storage