dokcer-compose modrinth example with cl5 mod in portainer wont't start #2782
Unanswered
Daimonion1980
asked this question in
Q&A
Replies: 1 comment 1 reply
-
You can exclude misbehaving mods using Hopefully that helps. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey guys.
I'm trying to setup a cl5 Server https://modrinth.com/modpack/create-live-5
inside a fresh portainer lxc container on my proxmox system.
docker, including docker-compose and portainer was installed with helper script and works fine.
After this i added a stack with the following docker-compose.yml
`
version: "3.8"
services:
mc:
image: itzg/minecraft-server
tty: true
stdin_open: true
ports:
- "25565:25565"
environment:
EULA: "TRUE"
MOD_PLATFORM: MODRINTH
MODRINTH_MODPACK: https://modrinth.com/modpack/create-live-5/version/1.0.4
# or for auto-upgrading to latest
# MODRINTH_MODPACK: https://modrinth.com/modpack/create-live-5
# or just create-live-5 or VUmd23oG
# and could replace version URL with
# MODRINTH_VERSION: VUmd23oG
# MODRINTH_VERSION: 1.0.4
# MODRINTH_VERSION: "create live 5 Version 1.0.4"
volumes:
# attach the relative directory 'data' to the container's /data path
- ./data:/data
`
the server tried to start but failed with the following log entry:
net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [ Create: Dreams & Desires (create_dd) has failed to load correctly §7java.util.ConcurrentModificationException: null ]
Attached the complete log file:
_mc-java-server-cl5-mc-1_logs.txt
I see that the mod "Dreams & Desires" has a problem, but i don't know how to deal with it.
Does anybody know this problem and has a tip or a solution?
Beta Was this translation helpful? Give feedback.
All reactions