docker-minecraft-server
docker-minecraft-server copied to clipboard
Run plugins on Server with Curseforge type
Describe the problem
I am running a container with a Curseforge-Modpack. Is it possible to install plugins on the server, like on Spigot? I tried using the SPIGET_RESOURCES variable. But it doesn't seem to be compatible with TYPE=CURSEFORGE.
Container definition
version: '3.3'
services:
minecraft-server:
volumes:
- './data:/data'
- './plugins:/plugins'
- './modpacks:/modpacks'
environment:
- TYPE=CURSEFORGE
- CF_SERVER_MOD=/modpacks/ddss.zip
- EULA=TRUE
- USE_MODPACK_START_SCRIPT=false
- FTB_LEGACYJAVAFIXER=true
- MEMORY=12G
- SPIGET_RESOURCES=9089,34315
ports:
- '25565:25565'
container_name: mc
image: itzg/minecraft-server:java8
Container logs
Paste logs here
I didn't know Spigot provided Forge plugins. Can you provide the links to the page of the resources you're trying?
I don't think forge support any Spigot plugin by default. If you want to have a forge server with plugins, consider using Magma (you can also look into Sponge but I'm not sure they support the latest minecraft versions). I've been using it for the past 6 months works great.
CurseForge modpacks only support Forge and Fabric mod loaders, so running via that mechanism directly won't support Spigot/Paper plugins.
Instead, I agree with the suggestion: use Magma server type. You'll need to declare the modpack zip as a generic pack.
This issue is stale because it has been open 30 days with no activity. Please add a comment describing the reason to keep this issue open.