Skip to content

AUTO_CURSEFORGE seeming not to find the server version of the modpack #2471

Answered by itzg
HeroYui asked this question in Q&A
Discussion options

You must be logged in to vote

You need to exclude the incorrectly published embeddium mod as described in the documentation. The corrected compose file that works for me is:

version: "3.8"

services: 
  mc:
    image: itzg/minecraft-server
    environment:
      EULA: true
      MOD_PLATFORM: AUTO_CURSEFORGE
      CF_API_KEY: ${CF_API_KEY}
      CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/all-the-mods-9
      CF_FILENAME_MATCHER: "0.2.14"
      CF_FORCE_SYNCHRONIZE: true
      CF_EXCLUDE_MODS: |
        embeddium
      MEMORY: 4G
    volumes:
      - mc:/data
      - ./downloads:/downloads
      
volumes: 
  mc: {}

where my downloads directory contains:

downloads
├── Structory_1.20.2_v1.3.3.jar
├── allt…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by HeroYui
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #2470 on November 07, 2023 18:46.