31 lines
654 B
Markdown
31 lines
654 B
Markdown
# Minecraft: Pi Edition For Docker
|
|
|
|
## Dependencies
|
|
```sh
|
|
# Required For Hardware Acceleration
|
|
sudo apt install virgl-server
|
|
|
|
# Required For ARM Support
|
|
sudo docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
|
```
|
|
|
|
## Tutorial
|
|
```sh
|
|
virgl_test_server &
|
|
PID="$!"
|
|
|
|
xhost local:root
|
|
|
|
sudo docker run -v /tmp/.X11-unix:/tmp/.X11-unix -v /tmp/.virgl_test:/tmp/.virgl_test -v ~/.minecraft-pi:/root/.minecraft --network host -e DISPLAY=unix${DISPLAY} thebrokenrail/minecraft-pi
|
|
|
|
kill "${PID}"
|
|
```
|
|
|
|
## Installation
|
|
```sh
|
|
./install.sh
|
|
```
|
|
|
|
## Tweaks
|
|
The included version of Minecraft: Pi Ediiton is slightly modified to use the touchscreen UI.
|