项目作者: seancheung

项目描述 :
Minecraft bedrock server docker image
高级语言: Shell
项目地址: git://github.com/seancheung/bedrock.git
创建时间: 2019-08-18T12:11:54Z
项目社区:https://github.com/seancheung/bedrock

开源协议:MIT License

下载


bedrock

Minecraft bedrock server docker image

Start server

  1. docker run -d -it --name bedrock -p 19132:19132/udp --restart unless-stopped -v /var/opt/bedrock:/data seancheung/bedrock

Latest version of official bedrock server will be download at first launch

Configuration

Config files and world files will be written to the linked /data directory.

Commands

Attach to the running container

The container must have been started with -it options

  1. docker attach bedrock

Type in help to check available commands.

Type ^P,^Q(Ctrl+P,Ctrl+Q) to detach.

Upgrade

Simply recreate the container. Or follow this:

  1. docker exec bedrock rm -f /var/bedrock/.version
  2. docker restart bedrock