-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-start.sh
19 lines (14 loc) · 930 Bytes
/
docker-start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
cd /minecraft-init
# Copy server folders to the server directory
cp -r -f ./cache /minecraft
cp -r -f ./libraries /minecraft
cp -r -f ./plugins /minecraft
cp -r -f ./versions /minecraft
# Copy the server files
cp ./eula.txt /minecraft
cp ./paper.jar /minecraft
cp ./server-icon.png /minecraft
# Start the server
cd /minecraft
java -Xms6G -Xmx6G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 -Dusing.aikars.flags=https://mcflags.emc.gs -Daikars.new.flags=true -jar paper.jar --nogui