Skyfactory 4 Problem #3033
-
crash-2024-08-05_16.33.48-server.txt I'm currently having an issue setting up a skyfactory 4 server. I'm currently debugging and I'm not sure if its a bug in the container or if I'm doing something wrong. Help is super appreciated. I've attached logs and my docker compose files |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I downloaded the mods folder manually and copied it over. That and increasing the memory size seemed to do the trick and now I just gotta set the world correctly which I'm sure is in the docs! |
Beta Was this translation helpful? Give feedback.
-
net.minecraftforge.fml.common.MissingModsException: Mod wailastages (Waila Stages) requires [waila] If you ended up here because of the above (see the attached server.txt on the post), another solution is to use the CURSEFORGE_FILES variable to force the download of the missing mod. My loose understanding is that waila got renamed to "hwyla" and for some reason it's not resolving in the Waila Stages mod. In my case, I'm using kuberentes to host the server and the deployment looks something like this. Note: A statefulset is probably a better choice here but live your life. apiVersion: apps/v1
kind: Deployment
metadata:
name: minecraft
namespace: your-namespace
spec:
selector:
matchLabels:
app: minecraft
replicas: 1
template:
metadata:
labels:
app: minecraft
spec:
containers:
- name: minecraft
image: itzg/minecraft-server:java8
env:
- name: CF_API_KEY
value: "{your-curseforge-key-here}"
- name: EULA
value: "TRUE"
- name: TYPE
value: "AUTO_CURSEFORGE"
- name: CF_PAGE_URL
value: "https://www.curseforge.com/minecraft/modpacks/skyfactory-4"
- name: CURSEFORGE_FILES
value: "https://www.curseforge.com/minecraft/mc-mods/hwyla"
- name: MEMORY
value: "8G"
ports:
- containerPort: 25565
name: minecraft
volumeMounts:
- name: minecraft-data
mountPath: /data
volumes:
- name: minecraft-data
persistentVolumeClaim:
claimName: minecraft-data |
Beta Was this translation helpful? Give feedback.
I downloaded the mods folder manually and copied it over. That and increasing the memory size seemed to do the trick and now I just gotta set the world correctly which I'm sure is in the docs!