Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1014 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 1014 Bytes

docker-spigot-server

Dockerfile using my Spigot builder image to spin up a server instance.

Usage

The Spigot server.properties file is generated dynamically by the entrypoint each time the container is started. In the case a variable is not provided, safe defaults are interpolated and used.

docker container run -p 25565:25565 -e SPIGOT_AGREE_EULA=true kawaii/spigot-server:1.13.2
services:
  spigot:
    environment:
      SPIGOT_AGREE_EULA: 'true'
      SPIGOT_LEVEL_NAME: dockercraft
    image: kawaii/spigot-server:1.13.2
    ports:
    - 0.0.0.0:25565:25565/tcp
version: '3.7'

Persisting Data

To be completed soon™.

Installing Plugins

To be completed soon™.