Skip to content

Instantly share code, notes, and snippets.

@bobuss
Created May 21, 2024 14:48
Show Gist options
  • Save bobuss/8e4367381e74cfa415dabbf05821bf7a to your computer and use it in GitHub Desktop.
Save bobuss/8e4367381e74cfa415dabbf05821bf7a to your computer and use it in GitHub Desktop.
docker-compose file for minecraft server and raspberryjuice
version: "3.9"
services:
minecraft-server:
image: "itzg/minecraft-server"
container_name: "minecraft-server"
ports:
- "25565:25565"
- "4711:4711"
volumes:
- "./minecraft:/data"
environment:
EULA: "TRUE"
TYPE: "SPIGOT"
PLUGINS: "https://github.com/zhuowei/RaspberryJuice/raw/master/jars/raspberryjuice-1.12.1.jar"
tty: true
stdin_open: true
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment