-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (47 loc) · 941 Bytes
/
docker-compose.yml
File metadata and controls
47 lines (47 loc) · 941 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
43
44
45
46
47
services:
proxy:
stdin_open: true
restart: unless-stopped
tty: true
volumes:
- './proxy:/data'
ports:
- '25565:25577'
image: bravewave/paperwave
container_name: proxy
hub:
stdin_open: true
restart: unless-stopped
tty: true
env_file:
- ./hub/env.list
volumes:
- './hub/data:/data'
ports:
- '25566:25566'
image: cmunroe/papermc
container_name: hub
survival:
stdin_open: true
restart: unless-stopped
tty: true
env_file:
- ./survival/env.list
volumes:
- './survival/data:/data'
ports:
- '25567:25567'
image: cmunroe/papermc
container_name: survival
creative:
stdin_open: true
restart: unless-stopped
tty: true
env_file:
- ./creative/env.list
volumes:
- './creative/data:/data'
ports:
- '25568:25568'
image: cmunroe/papermc
container_name: creative