Skip to content

Instantly share code, notes, and snippets.

@veleek
Last active January 15, 2022 05:49
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 veleek/96b9dc0af0a30814c80e22453a9102ef to your computer and use it in GitHub Desktop.
Save veleek/96b9dc0af0a30814c80e22453a9102ef to your computer and use it in GitHub Desktop.
Minecraft Bedrock Docker Compose
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