launch.sh 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #!/bin/bash
  2. # https://github.com/itzg/dockerfiles/blob/master/minecraft-server/start.sh
  3. set -e
  4. sed -i "/^minecraft/s/:1000:1000:/:${UID}:${GID}:/g" /etc/passwd
  5. sed -i "/^minecraft/s/:1000:/:${GID}:/g" /etc/group
  6. cd /home/minecraft
  7. if [ ! -e eula.txt ]; then
  8. echo "# Generated via Docker at $(date)" > eula.txt
  9. echo "eula=TRUE" >> eula.txt
  10. chown ${UID}:${GID} eula.txt
  11. fi
  12. if [ ! -e server.properties ]; then
  13. echo "Missing server.properties"
  14. exit 99
  15. fi
  16. # create ops.txt file with the names
  17. # There whitelist code https://github.com/itzg/dockerfiles/blob/master/minecraft-server/start-minecraft.sh#L540
  18. # but it doesn't work. See https://www.beastnode.com/portal/knowledgebase/6/Setting-Up-a-Whitelist-or-Make-Your-Server-Private.html
  19. # on using /whitelist add username (to actually setup and use the whitelist.json file) :P
  20. if [ ! -e banned-players.json ]; then
  21. echo '[]' > banned-players.json
  22. chown ${UID}:${GID} banned-player.json
  23. fi
  24. if [ ! -e banned-ips.json ]; then
  25. echo '[]' > banned-ips.json
  26. chown ${UID}:${GID} banned-ips.json
  27. fi
  28. EXTRA_ARGS=""
  29. # Optional disable console
  30. if [[ ${CONSOLE} = false || ${CONSOLE} = FALSE ]]; then
  31. EXTRA_ARGS+="--noconsole"
  32. fi
  33. # Optional disable GUI for headless servers
  34. if [[ ${GUI} = false || ${GUI} = FALSE ]]; then
  35. EXTRA_ARGS="${EXTRA_ARGS} nogui"
  36. fi
  37. # put these prior JVM_OPTS at the end to give any memory settings there higher precedence
  38. echo "Setting initial memory to ${INIT_MEMORY:-${MEMORY}} and max to ${MAX_MEMORY:-${MEMORY}}"
  39. JVM_OPTS="-Xms${INIT_MEMORY:-${MEMORY}} -Xmx${MAX_MEMORY:-${MEMORY}} ${JVM_OPTS}"
  40. echo "Switching to user 'minecraft' and launching $SERVER"
  41. su-exec minecraft java $JVM_XX_OPTS $JVM_OPTS $STARTUP -jar $SERVER "$@" $EXTRA_ARGS