docker-minecraft-server icon indicating copy to clipboard operation
docker-minecraft-server copied to clipboard

Run plugins on Server with Curseforge type

Open BastianLo opened this issue 3 years ago • 1 comments

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

BastianLo avatar Oct 28 '22 05:10 BastianLo

I didn't know Spigot provided Forge plugins. Can you provide the links to the page of the resources you're trying?

itzg avatar Oct 28 '22 12:10 itzg

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.

Fayorg avatar May 22 '23 16:05 Fayorg

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.

itzg avatar May 22 '23 17:05 itzg

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.

github-actions[bot] avatar Jun 22 '23 02:06 github-actions[bot]