- Install Docker and Docker Compose
- Create a
/opt/minecraftdir, and make it owned by UID 10000, GID 10000
$ sudo bash -c 'mkdir -pv /opt/minecraft; chown -vR 10000:10000 /opt/minecraftThis will build a Spigot-based server:
$ make buildThis will start the Spigot-based server, mounting the data volume on the above /opt/minecraft dir.
$ make spigotThis will start the standard server:
$ make minecraftThis will backup the standard dir to $(PWD)/BACKUP/minecraft.$(DATE).tar:
$ make backup