Improve Image

This commit is contained in:
TheBrokenRail 2021-02-10 20:03:19 -05:00
parent 4de452517a
commit 6ab07f04db
2 changed files with 21 additions and 16 deletions

View File

@ -3,6 +3,8 @@ services:
minecraft-pi-server:
image: 'thebrokenrail/minecraft-pi-reborn:server'
network_mode: 'host'
stdin_open: true
tty: true
volumes:
- /usr/bin/qemu-arm-static:/usr/bin/qemu-arm-static
- '${MCPI_ROOT}:/home/.minecraft-pi'

View File

@ -8,6 +8,8 @@ if [ ! "$(id -u)" = '0' ]; then
exit 1
fi
# Check
if ! id user > /dev/null 2>&1; then
# Create User Groups
if [ -z "${USER_GID+x}" ]; then
USER_GID='1000'
@ -27,6 +29,7 @@ if [ ! -z "${USER_OTHER_GIDS+x}" ]; then
usermod -aG "${gid}" user
done
fi
fi
# Start
exec gosu "${USER_UID}" ./launcher