buildpack/script/server

9 lines
518 B
Plaintext
Raw Normal View History

#!/bin/sh
while true; do
2019-09-21 14:03:15 +00:00
stty intr undef
2019-09-27 12:45:00 +00:00
tmux new -d -s alivecheck 'sh -x script/alivecheck'
java -Xmx384M -Xss512k -Xaggressive -Xcompressedrefs -Xdump:none -Xgcpolicy:balanced -Xcompactexplicitgc -Xcompactgc -Xquickstart -Xshareclasses -XX:-HeapDumpOnOutOfMemoryError -XX:MaxDirectMemorySize=64M -XX:+UseContainerSupport -Dcom.mojang.eula.agree=true -Dpaper.playerconnection.keepalive=360 -DIReallyKnowWhatIAmDoingISwear -jar minecraft-server.jar --world-dir=worlds
2019-09-27 12:45:00 +00:00
tmux kill-session -t alivecheck
sleep 1
done