-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
50 lines (47 loc) · 1.2 KB
/
docker-compose.yml
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
48
49
50
version: "3.5"
volumes:
db-vol:
services:
# minecraft_vanilla:
# image: k4liii/minecraft-vanilla:latest
# container_name: "minecraft_vanilla"
# volumes:
# - ~/minecraft_docker/server.properties_1.19.2:/home/creeper/mc/server.properties
# - db-vol:/home/creeper/mc/
# environment:
# BACKUP_INTERVAL: 30
# BACKUP: false
# JAVA_XMS: 4096M
# JAVA_XMX: 4096M
# PORT: 6000
# MC_VERSION: 1.19.2
# #TOKEN: xxxxxxxxxxxxxxxx
# #GIT_REPO: xxxxxxxxxxxxxx
# ports:
# - 6000:6000
# minecraft_forge:
# build: forge
# container_name: "minecraft_forge"
# volumes:
# - ./forge/data:/home/creeper/mc/
# environment:
# BACKUP_INTERVAL: 15
# BACKUP: false
# JAVA_XMS: 4096M
# JAVA_XMX: 4096M
# PORT: 6000
# MC_VERSION: 1.19.2-43.2.3
# TOKEN: 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
# GIT_REPO: [email protected]:k4lii/mc_backup.git
# ports:
# - 25000:25565
minecraft_fabric:
build: fabric
container_name: "minecraft_fabric"
volumes:
- ./fabric/data:/home/creeper/mc/
environment:
JAVA_XMS: 4096M
JAVA_XMX: 4096M
ports:
- 25000:25565