Created
August 13, 2020 01:39
-
-
Save edgar/a0fb621994a4129053e983853172b59e to your computer and use it in GitHub Desktop.
Docker compose file to run Minecraft Bedrock servr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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