Quick Start
Get a WukongMP server running in under 5 minutes.
1. Download the serverâ
- Windows
- Linux
- Docker
docker pull ghcr.io/readycodeio/wukongmp-server:0.2.4
2. Extract and configureâ
- Windows
- Linux
- Docker
Extract the .zip to a folder of your choice. The server is self-contained â no installer needed.
To change the port (default: 9050), open config.json and edit Server:Port.
Extract the .zip to a folder of your choice. The server is self-contained â no installer needed.
To change the port (default: 9050), open config.json and edit Server:Port.
Copy the config file from the image:
docker create --name wukongmp-tmp ghcr.io/readycodeio/wukongmp-server:0.2.4
docker cp wukongmp-tmp:/app/config.json ./config.json
docker rm wukongmp-tmp
Port configuration is handled by remapping the container ports â see step 3.
The image ships without mods. Before starting the container, download the binary package and copy WukongMp.Sdk and your chosen game mode mod (WukongMp.PvP or WukongMp.Coop) into your local ./mods/ folder.
3. Start the serverâ
- Windows
- Linux
- Docker
Double-click server.exe, or run it from a terminal:
.\server.exe
chmod +x server && ./server
docker run \
-p 9050:9050/udp -p 9050:9050/tcp \
-v ./data:/app/data \
-v ./mods:/app/mods \
-v ./saves:/app/saves \
-v ./config.json:/app/config.json \
--name wukongmp-server \
ghcr.io/readycodeio/wukongmp-server:0.2.4
Or with Docker Compose:
services:
server:
image: ghcr.io/readycodeio/wukongmp-server:0.2.4
container_name: wukongmp-server
restart: unless-stopped
ports:
- "9050:9050/tcp"
- "9050:9050/udp"
volumes:
- ./data:/app/data
- ./mods:/app/mods
- ./saves:/app/saves
- ./config.json:/app/config.json
4. Open the admin panelâ
Once the server is running, open your browser and go to:
http://localhost:9050
From here you can manage players, configure mods, and monitor your server in real time.
đ You're live! Share your IP and port :9050 with players â they'll need the ReadyM Launcher installed to connect.
Next stepsâ
| Full Installation Guide | Advanced configuration and options |
| Admin Panel | Manage users, bans, and server settings |
| Mod Management | Install and configure mods |
| Server List | Register your server publicly |