Skip to content

Instantly share code, notes, and snippets.

@edgar
Created August 13, 2020 01:39
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 edgar/a0fb621994a4129053e983853172b59e to your computer and use it in GitHub Desktop.
Save edgar/a0fb621994a4129053e983853172b59e to your computer and use it in GitHub Desktop.
Docker compose file to run Minecraft Bedrock servr
version: '3.4'
services:
bds:
image: itzg/minecraft-bedrock-server
environment:
EULA: "TRUE"
GAMEMODE: creative
DIFFICULTY: hard
LEVEL_SEED: "2006386677"
ALLOW_CHEATS: "true"
# WHITE_LIST: "true"
DEFAULT_PLAYER_PERMISSION_LEVEL: operator
ports:
- 19132:19132/udp
volumes:
- bds:/data
stdin_open: true
tty: true
volumes:
bds: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment