mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-13 22:02:28 +00:00
8 lines
134 B
Bash
Executable file
8 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
usermod --uid $UID minecraft
|
|
chown -R minecraft /data /start-minecraft
|
|
|
|
exec sudo -E -u minecraft /start-minecraft
|
|
|