Last active
January 15, 2022 05:49
-
-
Save veleek/96b9dc0af0a30814c80e22453a9102ef to your computer and use it in GitHub Desktop.
Minecraft Bedrock Docker Compose
This file contains 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: | |
minecraft: | |
image: itzg/minecraft-bedrock-server | |
environment: | |
EULA: "TRUE" | |
GAMEMODE: survival | |
DIFFICULTY: normal | |
ports: | |
- 19132:19132/udp | |
volumes: | |
- minecraft-data:/data | |
stdin_open: true | |
tty: true | |
volumes: | |
minecraft-data: | |
#name: minecraft-data | |
driver: local | |
driver_opts: | |
type: 'none' | |
o: 'bind' | |
device: '/minecraft' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment