Wrong version/modpack being grabbed #2550
Replies: 2 comments 3 replies
-
That can't be the actual compose file you're using since it uses Also, I really don't want to provide further support for the old CurseForge mechanism. Please switch to https://docker-minecraft-server.readthedocs.io/en/latest/types-and-platforms/mod-platforms/auto-curseforge/ |
Beta Was this translation helpful? Give feedback.
-
I am unable to provide further support until you sort out what is running and not. It sounds like misunderstood docker compose and started more before stopping others. I'd also recommend removing the restart policy
until you have a system configured the way you want. |
Beta Was this translation helpful? Give feedback.
-
Hi there, I am fairly new to docker.
I am running it on OMV6, and attempting to set up a modded minecraft server.
I have got my compose file set up, but it keeps telling me in the logs that i havent specified a version of minecraft, that i am using type=curseforge, and that im after the modpack ATM7.
however I have specified version=1.20.1, type=forge and modpack=after-midnight
any ideas on why it is ignoring my commands, and failing to boot?
Compose File
version: "1.1" services: minecraft-server: image: itzg/minecraft-server container_name: minecraft network_mode: host environment: - PUID=998 - PGID=100 - EULA=TRUE - TYPE=FORGE - CF_API_KEY="mykey" - CF_MOD_PAGE=https://legacy.curseforge.com/minecraft/modpacks/after-midnight - VERSION=1.20.1 - MEMORY=4G - ANNOUNCE_PLAYER_ACHIEVEMENTS=true - TZ=Australia/Hobart - ENABLE_ROLLING_LOGS=true - SERVER_NAME=Mordhaheim - LEVEL_NAME=Mordhaheim - ALLOW_FLIGHT=true - PVP=false ports: - 25565:25565 volumes: - /docker/docker-config/curseforge:/mods - /docker/docker-config/curseforge:/modpacks - /docker/docker-config/curseforge:/data restart: unless-stoppedsnippet of log (it just repeats)
[init] Running as uid=1000 gid=1000 with /data as 'drwxr-xr-x 2 1000 1000 4096 Dec 1 11:20 /data' [init] WARNING for the old TYPE=CURSEFORGE mechanism it is best to set VERSION to a specific value [init] Resolved version given LATEST into 1.20.2 [init] Looking for Feed-The-Beast / CurseForge server modpack. [init] FTB server modpack /modpacks/ATM7-0.4.32-server.zip not found. [init] Running as uid=1000 gid=1000 with /data as 'drwxr-xr-x 2 1000 1000 4096 Dec 1 11:20 /data' [init] WARNING for the old TYPE=CURSEFORGE mechanism it is best to set VERSION to a specific value [init] Resolved version given LATEST into 1.20.2 [init] Looking for Feed-The-Beast / CurseForge server modpack. [init] FTB server modpack /modpacks/ATM7-0.4.32-server.zip not found. [init] Running as uid=1000 gid=1000 with /data as 'drwxr-xr-x 2 1000 1000 4096 Dec 1 11:20 /data' [init] WARNING for the old TYPE=CURSEFORGE mechanism it is best to set VERSION to a specific value [init] Resolved version given LATEST into 1.20.2 [init] Looking for Feed-The-Beast / CurseForge server modpack. [init] FTB server modpack /modpacks/ATM7-0.4.32-server.zip not found.Beta Was this translation helpful? Give feedback.
All reactions