minecraft-pi-reborn/debian/client/virgl/usr/lib/minecraft-pi/run.sh
TheBrokenRail f6dd4a17e6
All checks were successful
minecraft-pi-reborn/pipeline/head This commit looks good
No Longer Run MCPI As Root
2021-01-30 21:32:20 -05:00

18 lines
250 B
Bash
Executable File

#!/bin/sh
set -e
# Start VirGL
virgl_test_server > /tmp/minecraft-pi/virgl.log 2>&1 &
VIRGL_PID=$!
# Launch Minecraft
set +e
docker-compose -f "${DOCKER_COMPOSE_YML}" run --rm minecraft-pi
RET=$?
set -e
# Kill VirGL
kill ${VIRGL_PID}
exit ${RET}