mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-05 07:38:25 +00:00
1.4 KiB
1.4 KiB
Run the Darkflame Server inside Docker
What you need
- Docker (Docker Desktop or on Linux normal Docker)
- Docker-Compose (Included in Docker Desktop)
- LEGO® Universe Client
Run server inside Docker
- Copy
.env.exampleand save it as.envinside the root directory of this repository - Edit the
.envfile and add your path to your LEGO® Universe Client afterCLIENT_PATH= - Update other values in the
.envfile as need (be sure to update passwords!) - Run
docker-compose up --build setup - Run
docker-compose up -d database - Run
docker-compose up --build -d account-manager brickbuildfix - Run
docker-compose build darkflame - Run
docker-compose exec darkflame /app/MasterServer -aand setup your admin account - Run
docker-compose up -d darkflame - Now you can see the output of the server with
docker compose logs -f --tail 100ordocker-compose logs -f --tail 100. This can help you understand issues and there you can also see when the server finishes it's startup. - You're ready to connect your client!
Disable brickbuildfix
If you don't need the http server running on port 80 do this:
- Create a file with the name
docker-compose.override.yml - Paste this content:
services:
brickbuildfix:
profiles:
- donotstart
- Now run
docker compose up -d --buildordocker-compose up -d --build