Skip to content

Instantly share code, notes, and snippets.

@micahyoung
Last active December 26, 2021 23:09
Show Gist options
  • Save micahyoung/800c37a78d0f31023d7beb4ccc9da5d4 to your computer and use it in GitHub Desktop.
Save micahyoung/800c37a78d0f31023d7beb4ccc9da5d4 to your computer and use it in GitHub Desktop.
WIP: Run Minecraft Bedrock server in Docker on Rasberry Pi 64bit
  1. Flash RPI 64-bit OS
  2. Boot RPI and connect to network
  3. Install docker
    curl -fsSL https://get.docker.com | sh
    sudo usermod -aG docker pi
    # logout and login
    
  4. Activate qemu-user-static image for x86_64
    docker run --rm --privileged aptman/qus -s -- -p x86_64
    
    Confirmed: tag d6.1
  5. Run Minecraft container
    docker run --name minecraft -v minecraft-data:/data -e EULA=TRUE -p 19132:19132/udp --detach --tty --interactive itzg/minecraft-bedrock-server
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment