-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
116 lines (115 loc) · 3.62 KB
/
Copy pathdocker-compose.yml
File metadata and controls
116 lines (115 loc) · 3.62 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
version: '3.8'
services:
mc:
image: itzg/minecraft-server:latest
ports:
- "25565:25565"
environment:
EULA: "TRUE"
VERSION: "1.20.4"
TYPE: "PAPER"
DIFFICULTY: "peaceful"
VIEW_DISTANCE: "10"
MODE: "creative"
LEVEL_TYPE: "flat"
GENERATE_STRUCTURES: "false"
SPAWN_PROTECTION: "0"
MAX_PLAYERS: "20"
ENABLE_COMMAND_BLOCK: "true"
SPAWN_MONSTERS: "false"
SPAWN_ANIMALS: "false"
SPAWN_NPCS: "false"
ALLOW_NETHER: "false"
MOTD: "Development Test Server"
OVERRIDE_SERVER_PROPERTIES: "true"
TZ: "UTC"
ENABLE_ROLLING_LOGS: "false"
EXEC_DIRECTLY: "true"
GENERATOR_SETTINGS: '{"biome":"minecraft:plains","layers":[{"block":"minecraft:bedrock","height":1},{"block":"minecraft:deepslate","height":8},{"block":"minecraft:stone","height":20},{"block":"minecraft:granite","height":10},{"block":"minecraft:dirt","height":3},{"block":"minecraft:grass_block","height":1}],"structures":{"structures":{}}}'
ALLOW_FLIGHT: "true"
ONLINE_MODE: "false"
MAX_WORLD_SIZE: "1000"
INIT_MEMORY: "1G"
MAX_MEMORY: "2G"
ENABLE_RCON: "false"
FORCE_GAMEMODE: "true"
PLAYER_IDLE_TIMEOUT: "0"
ALLOW_CHEATS: "true"
GAMERULES: '{"doDaylightCycle":"false","doWeatherCycle":"false","doInsomnia":"false","spamThreshold":999999,"maxCommandChainLength":65536}'
DEFAULT_TIME: "6000"
TIME_LOCK: "6000"
EXISTING_OPS_FILE: "skip"
PAPER_SPIGOT_YAML: |
settings:
spam-limiter:
tab-spam-increment: 0
tab-spam-limit: 999999
limit-player-interactions: false
use-display-name-in-quit-message: false
unsupported-settings:
allow-permanent-block-break-exploits: true
allow-piston-duplication: true
perform-username-validation: false
messages:
kick:
authentication-servers-down: false
connection-throttle: false
flying-player: false
flying-vehicle: false
players:
disable-spam-limiter: true
config-version: 12
world-settings:
default:
tick-rates:
mob-spawner: 1
game-mechanics:
disable-player-interaction-limiter: true
misc:
disable-player-interaction-limiter: true
packet-limiter:
kick-threshold: 999999
incoming-packet-threshold: 999999
max-packet-rate: 999999
interval: 10.0
packet-limiting:
all-packets:
action: IGNORE
max-packet-rate: 999999
interval: 10.0
network-compression-threshold: -1
network-compression-threshold: -1
player-auto-save-rate: -1
max-player-auto-save-per-tick: -1
SPIGOT_YAML: |
settings:
timeout-time: 3600000
restart-on-crash: false
spam-exclusions:
- /
connection-throttle: -1
netty-threads: 8
commands:
spam-exclusions:
- /
silent-commandblock-console: true
log: false
players:
disable-spam-limiter: true
world-settings:
default:
mob-spawn-range: 0
BUKKIT_YAML: |
settings:
connection-throttle: -1
spam-exclusions:
- /
timeout-time: 3600000
OPS: |
Builder
tty: true
stdin_open: true
restart: unless-stopped
volumes:
- ./data:/data
- ./ops.json:/data/ops.json