Replies: 1 comment
-
It turns out there's a new feature that can actually solve this even though it wasn't the original purpose: It actually doesn't care that it's a jar instead of a config file, so it can work like this: services:
mc:
image: itzg/minecraft-server
environment:
EULA: "TRUE"
TYPE: PAPER
PLUGINS: |
https://download.geysermc.org/v2/projects/geyser/versions/latest/builds/latest/downloads/spigot
https://download.geysermc.org/v2/projects/floodgate/versions/latest/builds/latest/downloads/spigot
https://hangarcdn.papermc.io/plugins/BentoboxWorld/bentobox/versions/3.7.4/PAPER/BentoBox-3.7.4.jar
DOWNLOAD_EXTRA_CONFIGS: |
plugins/BentoBox/addons<https://github.com/BentoBoxWorld/AOneBlock/releases/download/1.20.0/AOneBlock-1.20.0.jar |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Was trying to understand this a bit better, I can run this docker-compose and just move AOneBlock in plugins to after the fact to BentoBox/addons, but does anyway exist to do this in the docker compose file?
services:
oneblock:
image: itzg/minecraft-server
environment:
EULA: "true"
TYPE: "PAPER"
PLUGINS: |
https://download.geysermc.org/v2/projects/geyser/versions/latest/builds/latest/downloads/spigot
https://download.geysermc.org/v2/projects/floodgate/versions/latest/builds/latest/downloads/spigot
https://hangarcdn.papermc.io/plugins/BentoboxWorld/bentobox/versions/3.7.4/PAPER/BentoBox-3.7.4.jar
https://github.com/BentoBoxWorld/AOneBlock/releases/download/1.20.0/AOneBlock-1.20.0.jar
#for instance here run sudo mv /data/plugins/AOneBlock-1.20.0.jar /data/plugins/BentoBox/addons/AOneBlock-1.20.0.jar
ports:
- "25565:25565"
- "25565:25565/udp"
- "19132:19132/udp"
volumes:
- /data:/data
Beta Was this translation helpful? Give feedback.
All reactions