Skip to content

Instantly share code, notes, and snippets.

@rasmuseeg
Created April 15, 2020 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rasmuseeg/8d07ec41d60e04c06125ec457b78dc28 to your computer and use it in GitHub Desktop.
Save rasmuseeg/8d07ec41d60e04c06125ec457b78dc28 to your computer and use it in GitHub Desktop.
Minecraft Bedrock Server with Docker
version: "3.7"
services:
mcbedrock:
stdin_open: true
tty: true
image: itzg/minecraft-bedrock-server
restart: always
ports:
- "19132:19132/udp"
environment:
EULA: "TRUE"
LEVEL_NAME: "Bedrock level"
GAMEMODE: survival
DIFFICULTY: normal
ONLINE_MODE: "true"
volumes:
- c:\ProgramData\Minecraft Server\mcbedrock:/data
@rasmuseeg
Copy link
Author

rasmuseeg commented Apr 15, 2020

  • Change the LEVEL_NAME variable to your custom world name
  • Use docker inspect {container id/name} to attach and execute op commands
  • Change the volume path to your local storage path.

@CarlSargunar
Copy link

Awesome - Thanks Rasmus - I'll have a play at the weekend :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment