From da9e6f29c77e9949a2bed715f4e4e9bc2cd83637 Mon Sep 17 00:00:00 2001 From: RallyBlock Date: Tue, 10 Mar 2026 02:30:04 -0400 Subject: [PATCH] Upload files to "/" --- README.md | 4 ++-- docker-compose.yml | 14 +++++--------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index e3f8fe0..297d42e 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ The image is available on Docker Hub at [rallyblockk/blockland-pelican](https:// | -------------------- | ------------- | ----------------- | ----------- | | BL_DEDI_LAN | bool (0 or 1) | 0 | Launches the server as a Dedicated or Dedicated LAN type. Note that DedicatedLANs are forced into using 28050 as their port. Blame Badspot, not me | BL_DTOKEN | string | "" | Your [DToken](https://blockland.us/steam-dToken.php) for authentication -| BL_SERVER_NAME | string | (blank) | The name shown on the server list. Underscores will be replaced with spaces by Blockland -| BL_MAX_PLAYERS | int | (blank) | The max number of players that can join the server +| BL_SERVER_NAME | string | "" | The name shown on the server list. Underscores will be replaced with spaces by Blockland +| BL_MAX_PLAYERS | int | "" | The max number of players that can join the server | BL_GAMEMODE | string | Custom | The name of the gamemode to launch with | BL_PORT | int | 28000 | The port to bind to, see the Network section below | BL_EXTRA_ARGS | string | "" | Additional parameters to pass to the game as you see fit diff --git a/docker-compose.yml b/docker-compose.yml index dad8f01..fb28fe9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,17 +1,13 @@ +# Template for Pelican Panel egg. Pelican mounts server data to /home/container +# and manages container naming—do not add volumes or container_name. + services: blockland: - container_name: blockland image: rallyblockk/blockland-pelican stdin_open: true tty: true - restart: unless-stopped + restart: no network_mode: host environment: BL_GAMEMODE: "Custom" - BL_PORT: {{SERVER_PORT}} - volumes: - - ./blockland/Add-Ons:/data/Add-Ons - - ./blockland/config:/data/config - - ./blockland/saves:/data/saves - - ./blockland/modules:/data/modules - - ./blockland/base:/data/base \ No newline at end of file + BL_PORT: "28000"