Files
minecraft-server/Universal/entrypoint.sh
2024-11-05 18:36:28 +01:00

14 lines
281 B
Bash

#!/bin/sh
# Check if JAR URL is provided
if [ -z "$JAR" ]; then
echo "Error: JAR URL not provided."
exit 1
fi
# Download the Minecraft server JAR
curl -o minecraft-server.jar "$JAR"
# Run the Minecraft server
java -Xmx${MEMORY} -Xms${MEMORY} -jar minecraft-server.jar nogui