Trying to make a server in Docker but I'm getting an error when loading the mod pack. Seems to be something to do with the fermiumbooter and RLMixinsPlugin but idk. Not sure what to trouble shoot.
I've attached the latest.log and debug.log and here's my Docker Compose script
`version: "3.8"
services:
mc:
image: itzg/minecraft-server:java8-jdk
environment:
EULA: "TRUE"
TYPE: AUTO_CURSEFORGE
# allocate from https://console.curseforge.com/ and set in .env file
CF_API_KEY: ******************************************************
CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/rebirth-of-the-night
VERSION: 1.12.2
MEMORY: 16G
restart: unless-stopped
volumes:
- ./data:/data
- ./downloads:/downloads
ports:
- "25565:25565"`