Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NeoForge in Curse Forge modpacks #2933

Closed
kevinvdburgt opened this issue Jun 27, 2024 · 4 comments · Fixed by #2943
Closed

NeoForge in Curse Forge modpacks #2933

kevinvdburgt opened this issue Jun 27, 2024 · 4 comments · Fixed by #2943

Comments

@kevinvdburgt
Copy link

Enhancement Type

Improve an existing feature

Describe the enhancement

Some modpacks at Curse Forge are using NeoForge as their mod loader (for example ATM10).

Currently starting the modpack requires to start it with CF, after the mod has been downloaded, the type can be switched to NEOFORGE. However, it would be nice if CF had support for NeoForge as well :-)

@itzg
Copy link
Owner

itzg commented Jun 27, 2024

Thanks for pointing this out. I had added NeoForge support for Modrinth modpacks, but apparently I didn't circle around and add it for CurseForge ones.

@kevinvdburgt
Copy link
Author

Do you have an example how to use it with CF/NEOFORGE :-)?

@itzg
Copy link
Owner

itzg commented Aug 5, 2024

Referencing ATM10, as you found, would be the example. Making sure you've re-pulled the image it will be specified using https://docker-minecraft-server.readthedocs.io/en/latest/types-and-platforms/mod-platforms/auto-curseforge/

@Molier
Copy link

Molier commented Aug 13, 2024

working docker compose for reference.

atm10:
    container_name: atm10
    image: itzg/minecraft-server
    environment:
      MEMORY: 8G
      EULA: true
      MOD_PLATFORM: AUTO_CURSEFORGE
      CF_API_KEY: ${CF_API_KEY}
      CF_SLUG: all-the-mods-10
      CF_FORCE_SYNCHRONIZE: "true"
      CF_EXCLUDE_MODS: | # remove problematic client side mods
        lighty
        986380
      TYPE: NEOFORGE
      VERSION: 1.21
      NEOFORGE_VERSION: 21.0.167
    tty: true
    stdin_open: true
    restart: no
    volumes:
      - dataatm:/data
volumes:
  dataatm:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

3 participants