DOCS/hub/Installation
Docker CLI (Manual)
If you prefer running containers manually via the command line.
1. Run Hub:
docker run -d \
--name dylaris-hub \
-p 4000:4000 \
-p 9001:9001 \
-v $(pwd)/hub-data:/data \
-e DB_TYPE=sqlite \
-e DB_FILE=/data/hub.db \
-e LICENSE="YOUR_KEY" \
ghcr.io/callmebartis/dylaris-hub:latest
2. Run Gate:
docker run -d \
--name dylaris-gate \
-p 80:80 -p 443:443 -p 25565:25565 \
-p 8080:8080 -p 8081:8081 \
-e LICENSE_KEY="YOUR_KEY" \
-e GATE_SECRET="secure-secret-from-hub" \
ghcr.io/callmebartis/dylaris-gate:latest
3. Run Link (Agent):
docker run -d \
--name dylaris-link \
--net=host \
-e LINK_SECRET="secret-from-hub" \
-e LOCAL_HOST="127.0.0.1" \
ghcr.io/callmebartis/dylaris-link:latest
ID: 18LAST UPDATED: 3/1/2026