Installation
Pterodactyl (Recommended)
For users running the Pterodactyl panel, deployment is simplified with the provided egg file. This egg is built on the lightweight Alpine base image.
You can find the egg file in the GitHub repository: egg-pico-limbo.json
The egg supports additional installation configuration through the following environment variable:
- VERSION Specifies the Git tag of the release to install (e.g.,
v1.4.0+mc1.21.8
).- Default:
latest
- When set to
latest
(or left unset), the installer selects the newest stable release.
- Default:
Using Docker
The Docker image is multi-platform, supporting both Linux/amd64 and Linux/arm64 architectures. You can start the server using the following command:
docker run --rm -p "25565:25565" ghcr.io/quozul/picolimbo:latest
You can also mount a custom configuration file:
docker run --rm -p "25565:25565" -v /path/to/your/server.toml:/usr/src/app/server.toml ghcr.io/quozul/picolimbo:latest
Using Docker Compose
Here's the complete docker-compose.yml file:
services:
pico-limbo:
image: ghcr.io/quozul/picolimbo:latest
container_name: picolimbo
restart: unless-stopped
ports:
- "25565:25565"
volumes:
- ./server.toml:/usr/src/app/server.toml
To use this configuration:
- Create a new directory for your PicoLimbo installation
- Create a
docker-compose.yml
file with the content above - Create a
server.toml
file with your configuration - Run
docker compose up -d
to start the server
Binary / Standalone
GitHub Releases
Download pre-compiled binaries for multiple platforms from the GitHub releases page.
Compiling from Source
You can compile PicoLimbo from source using either Cargo or Git:
Using Cargo
To install PicoLimbo directly from the repository using Cargo:
cargo install --git https://github.com/Quozul/PicoLimbo.git pico_limbo
The binary will be installed to your Cargo bin directory (typically ~/.cargo/bin/pico_limbo
). Make sure this directory is in your PATH to run the command from anywhere:
# Run PicoLimbo
pico_limbo
# Or with full path if not in PATH
~/.cargo/bin/pico_limbo
NOTE
This method requires Rust and Cargo to be installed on your system. If you don't have them installed, visit rustup.rs for installation instructions.
Using Git
To clone and build PicoLimbo from source:
First, install Git and Rust (with Cargo) if you haven't already
Clone the repository:
bashgit clone https://github.com/Quozul/PicoLimbo.git cd PicoLimbo
Build the project:
bashcargo build --release
The compiled binary will be in the
target/release
directory. You can run it with:bash./target/release/pico_limbo