Video coming soon…

📱 Setup Minecraft Bedrock Server — Cross-Platform Multiplayer

Deploy a Minecraft Bedrock server supporting cross-play from Windows, Xbox, PlayStation, iOS, and Android devices.

Gaming Minecraft Bedrock
⚠️ This script is provided for demo and testing purposes only. Not intended for production use.

📦 Resources & Setup Scripts

Grab the automated bash script from GitHub to follow along with the video.

Automated install script — Minecraft Bedrock server up in one command, playable from any device.
View on GitHub

Quick Install:

wget https://raw.githubusercontent.com/mhmdali94/Docker/main/gaming/minecraft-bedrock/minecraft-bedrock-ubuntu.sh
chmod +x minecraft-bedrock-ubuntu.sh
sudo bash minecraft-bedrock-ubuntu.sh

Tutorial Steps

1 Download & Run the Installer

The script installs Docker if needed, pulls the Minecraft Bedrock Dedicated Server image, and starts the container. The server will be ready on UDP ports 19132 and 19133.

wget https://raw.githubusercontent.com/mhmdali94/Docker/main/gaming/minecraft-bedrock/minecraft-bedrock-ubuntu.sh
chmod +x minecraft-bedrock-ubuntu.sh
sudo bash minecraft-bedrock-ubuntu.sh

2 Configure the Server

Edit server.properties in the data volume to set the server name, gamemode, difficulty, and max players. Restart the container after saving changes.

# Edit server.properties
sudo nano /opt/minecraft-bedrock/data/server.properties

# Key settings:
# server-name=My Bedrock Server
# gamemode=survival
# difficulty=normal
# max-players=20

# Restart to apply
docker restart minecraft-bedrock

3 Connect with the Game Client

Open Minecraft on any supported device, go to the Friends tab, scroll down to Add External Server, enter your server's IP and port 19132, then save and join.

# In Minecraft (any platform):
# Friends tab → Add External Server
# Server Name: My Server
# Server Address: <your-server-ip>
# Port: 19132

4 Manage the Server

Attach to the server console to run admin commands, manage the allowlist (whitelist), kick or ban players, and view server logs with Docker.

# View server logs
docker logs -f minecraft-bedrock

# Attach to server console (for commands)
docker attach minecraft-bedrock

# Useful console commands:
# op YourGamertag         — grant operator
# allowlist add Name      — add to allowlist
# kick PlayerName         — kick a player
# stop                    — graceful shutdown

Ports Used

PortPurpose
19132 UDPMinecraft Bedrock game port (IPv4)
19133 UDPMinecraft Bedrock game port (IPv6)

Overview

The Minecraft Bedrock Dedicated Server (BDS) enables cross-platform multiplayer between Windows, Xbox, PlayStation, Nintendo Switch, iOS, and Android players. It is the official server software from Mojang for the Bedrock engine, offering a shared survival or creative world across all supported platforms.

Why Use It

Bedrock Edition is the only way to let console and mobile players join your server. If your friends play on Xbox, PlayStation, or phones, Java Edition will not work — you need a Bedrock server. Self-hosting gives you full control over the world without paying for Realms.

When You Need It

    Who Should Use It

      Real Use Cases

        Main Features

          How to Use After Installation

            Security Best Practices

              Ports and Firewall Notes

              Minecraft Bedrock uses UDP port 19132 for player connections. Open UDP port 19132 in your firewall. TCP port 19132 may also be needed. Unlike Java Edition, Bedrock uses UDP which may behave differently with some network setups and NAT configurations.

              Backup and Maintenance

                Common Mistakes

                  Troubleshooting

                    Alternatives

                    Alternatives include Minecraft Realms Plus (official, monthly fee, limited players), Java dedicated server (PC only), and GeyserMC (plugin allowing Bedrock clients on Java servers). Use GeyserMC if you want both Java and Bedrock players on the same server.

                    When Not to Use It

                    Avoid Bedrock server if all your players are on PC — Java Edition is more flexible with mods and plugins. Also avoid if you need extensive server modifications; Bedrock has far fewer add-on tools compared to the Java ecosystem.

                    PrismaTechWork Professional Help

                    PrismaTechWork provides end-to-end infrastructure services — from initial deployment and security hardening to ongoing monitoring, automated backups, and dedicated support. Whether you need a single-server setup or a multi-site network, our team ensures your infrastructure is built right, secured properly, and maintained reliably.

                      Contact Us

                      Frequently Asked Questions

                      Can Java and Bedrock players play together?

                      Not natively — they are different game engines with different network protocols. However, you can install the GeyserMC proxy plugin on a Java server, which acts as a translation layer allowing Bedrock clients to connect to a Java server. This is the most common way to bridge both editions.

                      Do console players need a subscription to join?

                      PlayStation players need PlayStation Plus and Xbox players need Xbox Game Pass Core (formerly Xbox Live Gold) to join online multiplayer servers. Nintendo Switch players need Nintendo Switch Online. These are console platform requirements — not related to your self-hosted server.

                      What is the allowlist and how do I use it?

                      The allowlist (formerly whitelist) restricts which players can join your server. Enable it by setting allow-list=true in server.properties. Add players by editing allowlist.json manually with their Gamertag and XUID, or use the in-game command: allowlist add GamerTag.

                      Does Bedrock server support add-ons and behavior packs?

                      Yes. Install behavior packs in the behavior_packs directory and resource packs in resource_packs, then reference them in world_behavior_packs.json and world_resource_packs.json files in your world folder. Add-ons can change game rules, mobs, items, and game mechanics.

                      How do I give admin or operator status to a player?

                      Add the player's Gamertag and XUID to the ops.json file, or use the console command op GamerTag when connected via the server console. Ops can use game commands, change game modes, and kick players. You can set permission levels (visitor, member, operator) for fine-grained control.

                      How much RAM does a Bedrock server need?

                      Bedrock Dedicated Server is generally more RAM-efficient than Java Edition. For 5 to 10 players, 1 to 2 GB of RAM is sufficient. For larger servers with 20 to 30 players, 2 to 4 GB is recommended. Bedrock uses significantly less CPU per player than Java Edition.

                      Can I run Bedrock server on an ARM-based machine like a Raspberry Pi?

                      The official BDS binary is x64 only. Running it on ARM (like Raspberry Pi) requires an x64 emulation layer. An unofficial community fork called PocketMine-MP or Nukkit runs natively on ARM and is more compatible, though it may not support the latest Bedrock features.

                      How do I keep the Bedrock server updated?

                      Download the latest BDS ZIP from the official Minecraft website, stop the server, back up your worlds, extract the new server files over the old ones (preserving your worlds and config files), and restart. The Docker image setup script automates this process for you.