Rxflex / kubek-minecraft-dashboard

Kubek - Web Minecraft servers dashboard
http://kubek.seeroy.ru
GNU General Public License v3.0
1 stars 0 forks source link

Kubek Minecraft Dashboard

Kubek is a web-based dashboard for managing Minecraft servers, offering a range of features to streamline server administration and customization.

Docker Image CI

Features

Tested and Supported Cores

Natively Supported Cores

Installation

Windows/Linux

Download and launch the latest release.

Web Version

Without Docker

Clone the repository and install the required modules. Make sure you have Node.js version 16 or above installed.

git clone https://github.com/Rxflex/kubek-minecraft-dashboard.git
cd kubek-minecraft-dashboard
npm install

Start the application after installation.

npm start

Docker Compose

version: '3.8'

services:
  app:
    build: .
    ports:
      - "3000:3000"
    volumes:
      - /opt/kubek/servers:/usr/kubek/servers

With Docker

Run the Container

Replace YOURPORT with the desired port for WebUI and YOURDIRECTORY with the path to the host directory where your servers are located.

docker run -d -p YOURPORT:3000 -v YOURDIRECTORY:/usr/kubek/servers --name kubik ghcr.io/rxflex/kubek-minecraft-dashboard:latest