mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-14 06:12:27 +00:00
88a796bb44
* corrected .dockerignore to allow for a $(pwd)/data for local testing of -v
6 lines
140 B
Bash
Executable file
6 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
|