mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
16 lines
315 B
Bash
16 lines
315 B
Bash
|
#!/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
|
||
|
echo "...switching to user 'minecraft'"
|
||
|
exec sudo -E -u minecraft /start-minecraft
|