mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
46c865a123
* only download/build Spigot/Bukkit when absent * refactored download ops into functions #72
20 lines
372 B
Bash
Executable File
20 lines
372 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
usermod --uid $UID minecraft
|
|
groupmod --gid $GID minecraft
|
|
|
|
chown -R minecraft:minecraft /data /start-minecraft
|
|
chmod -R g+wX /data /start-minecraft
|
|
|
|
while lsof -- /start-minecraft; do
|
|
echo -n "."
|
|
sleep 1
|
|
done
|
|
|
|
mkdir -p /home/minecraft
|
|
chown minecraft: /home/minecraft
|
|
|
|
echo "Switching to user 'minecraft'"
|
|
exec sudo -E -u minecraft /start-minecraft
|