mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-02-20 08:16:24 +00:00
7 lines
140 B
Bash
Executable File
7 lines
140 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
usermod --uid $UID minecraft
|
|
chown -R minecraft /data /start-minecraft
|
|
exec su -s /bin/bash -c /start-minecraft minecraft
|