Run Minecraft Bedrock Server in Docker.
- Automatic updates
- Periodic volume snapshot
Coming Soon
- Web UI for easy management
Coming Soon
- Telegram, Discord integration
Coming Soon
To use this docker image, make sure you are running on a linux host and latest version of docker is installed on system. You can check the version of docker with docker -v
.
- Clone this repo.
- Go to example folder.
- Make any changes to
server.properties
,whitelist.json
orpermissions.json
. - Start with :
docker run -it -d \
-v "$(pwd)"/server.properties:/app/server.properties \
-v "$(pwd)"/permissions.json:/app/permissions.json \
-v "$(pwd)"/whitelist.json:/app/whitelist.json \
-v "$(pwd)"/worlds:/app/worlds \
-p 19132:19132/udp \
asimbera/bedrock-server
Make sure docker-compose
is installed on your system. To install docker-compose
refer to wiki.
- Clone this repo.
- Go to example folder.
- Make any changes to
server.properties
,whitelist.json
orpermissions.json
. - Start with
docker-compose up -d
- Find container name with
docker ps
. - Attach to the container with
docker attach <container_name>
. - Stop the container with
stop
command in minecraft console. - Download latest image with
docker-compose pull
. - Restart the services with
docker-compose up -d
.
Refer to docker-compose wiki for more commands.
Any helpful feedback would be appreciated.
Issues and PRs are Welcome 💖