mirror of
https://github.com/itzg/docker-minecraft-server
synced 2025-03-04 23:27:17 +00:00
- Create 'minecraft' user account within image. - Drop to 'minecraft' user before starting server.
4 lines
103 B
Bash
Executable file
4 lines
103 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
chown -R minecraft:minecraft /data
|
|
exec su -s /bin/bash -c /start-minecraft minecraft
|