Title logo
strausmann/minecraft-bedrock-connect.

Minecraft Bedrock Connect based on Pugmatt/BedrockConnect compatible with AMD64 and ARM64 (Rasp Pi)

63,949 3 unknown amd64 unknown arm64

Build Information

General build information for this image

Docker Hub strausmann/minecraft-bedrock-connect
Build Time 30 Oct 2025 00:53:05
Base Image openjdk:20-ea-23-slim-bullseye
Category minecraft
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest latest 09 Oct 2025 at 20:13:42
1 latest 09 Oct 2025 at 20:13:42
2 2 09 Oct 2025 at 20:13:34

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  minecraft-bedrock-connect:
    image: strausmann/minecraft-bedrock-connect:latest
    container_name: minecraft-bedrock-connect
    restart: always
    environment:
      - SERVER_LIMIT=25 # How many servers a new player can have in their serverlist
      - MYSQL_USER=bedrock # MySQL Username
      - MYSQL_PASS=bedrock # MySQL Password
      - MYSQL_HOST=db # MySQL Host
      - MYSQL_DB=bedrock # MySQL Database Name
      - CUSTOM_SERVERS=/config/serverlist.json # Sets the path to a custom server file, for specifying your servers in the list for all players. See custom servers.
    volumes:
      - /host/path/to/config:/config # Bedrock Configuration
    ports:
      - 19132:19132/udp #  Minecraft Bedrock Port

CLI

docker create \
  --name=minecraft-bedrock-connect \
  -e SERVER_LIMIT=25 `# How many servers a new player can have in their serverlist` \
  -e MYSQL_USER=bedrock `# MySQL Username` \
  -e MYSQL_PASS=bedrock `# MySQL Password` \
  -e MYSQL_HOST=db `# MySQL Host` \
  -e MYSQL_DB=bedrock `# MySQL Database Name` \
  -e CUSTOM_SERVERS=/config/serverlist.json `# Sets the path to a custom server file, for specifying your servers in the list for all players. See custom servers.` \
  -v /host/path/to/config:/config `# Bedrock Configuration` \
  -p 19132:19132/udp `#  Minecraft Bedrock Port` \
  --restart always \
  strausmann/minecraft-bedrock-connect:latest