mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-02-22 00:56:24 +00:00
13 lines
237 B
Bash
Executable File
13 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
usermod --uid $UID minecraft
|
|
chown -R minecraft /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
|