Improve Image
This commit is contained in:
parent
4de452517a
commit
6ab07f04db
@ -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'
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user