Link Search Menu Expand Document

How to run Minecraft bedrock server with Docker

Use lomot/minecraft-bedrock image:

 $ docker pull lomot/minecraft-bedrock

Run container with:

 $ docker run -d -it --name mcpe -v $PWD/mcpe-data:/data -p 19132:19132/udp lomot/minecraft-bedrock

Kill container with command:

 $ docker container kill mcpe

Remove container with command:

 $ docker container rm mcpe

More info HERE