mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
9 lines
134 B
Bash
Executable File
9 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
|
|
|