17 lines
535 B
YAML
17 lines
535 B
YAML
version: '3'
|
|
services:
|
|
minecraft-pi:
|
|
image: 'thebrokenrail/minecraft-pi:client'
|
|
network_mode: 'host'
|
|
volumes:
|
|
- /usr/bin/qemu-arm-static:/usr/bin/qemu-arm-static
|
|
- '/tmp/.X11-unix:/tmp/.X11-unix'
|
|
- '~/.minecraft-pi:/root/.minecraft'
|
|
devices:
|
|
- '/dev/dri:/dev/dri'
|
|
environment:
|
|
- 'DISPLAY=unix${DISPLAY}'
|
|
- 'MCPI_FEATURES=${MCPI_FEATURES}'
|
|
- 'MCPI_USERNAME=${MCPI_USERNAME}'
|
|
- 'MCPI_MODE=native'
|