Sign inSign up

nefald/spigot

By nefald

Updated 5 months ago

Spigot, a high performance, no lag customized CraftBukkit Minecraft server API, and BungeeCord.

Artifact
Image
3

5.2K

nefald/spigot repository overview

Spigot - Unofficial Docker image

Spigot, a high performance, no lag customized CraftBukkit Minecraft server API, and BungeeCord, the cloud server proxy.

This is an unofficial Docker Image developped by Hiob for Nefald Community.

RCON

Our docker image integrated the RCON CLI by Itzg, based on james4k's RCON library for golang. With it, you will be able to manage your Minecraft server using a RCON client/console, for example MCrcon by Tiifii.

Spigot: Documentation and setup

Always refer you to spigotMC documentation.

Usage

You can find support and updated documentation on our Gitlab, also you can discuss and join us on our Discord.

Docker-compose

Here a sample of docker-compose.yml :

version: '3.7'

services:
 
  spigot:
    image: nefald/spigot:latest
    container_name: spigot
    restart: unless-stopped
    stdin_open: true
    tty: true

    ports:
      # Minecraft
      - 25565:25565/tcp
      - 25565:25565/udp

      # RCON
      - 25575:25575/tcp
      - 25575:25575/udp

    volumes:
      - '/path/to/local/folder:/data'
      
    environment:
      - INIT_MEMORY=4G
      - MAX_MEMORY=4G
      - TZ=Europe/Paris
environment variables
VariableDefaultFunction
INIT_MEMORY2GMin memory allocated to spigotMC container.
MAX_MEMORY2GMax memory allocated to spigotMC container.
TZEurope/ParisSpecify your server timezone (list).

LICENSE

Licensed under MIT LICENSE.

Original logo was designed by Faucet, released under CCBY license.

Tag summary

Content type

Image

Digest

sha256:c2087d52a

Size

155 MB

Last updated

5 months ago

docker pull nefald/spigot