Game.ini & Engine.ini overwritten #2
-
Just want to say this is awesome. I have been running this on my kubernetes cluster for a bit over 24 hours now and it seems to be stable. One question I have is it appears that the Engine.ini and Game.ini files are being overwritten every time i start up the container, effectively erasing any changes I had made previously. When I set it to read-only the init.sh script fails because it can not touch those files. any ideas on how I can stop that from happening? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey! I'm glad you're enjoying using it :D Yeah, the files had to be overwritten on reset as Satisfactory removes a few of the options that we need. I've just modified where the files are overwritten from, though. Now, instead of being filled from So essentially pull the latest image, reboot your container, then add any custom config options to the files in I'm curious though, what customizations are you setting? |
Beta Was this translation helpful? Give feedback.
Hey! I'm glad you're enjoying using it :D
Yeah, the files had to be overwritten on reset as Satisfactory removes a few of the options that we need.
I've just modified where the files are overwritten from, though. Now, instead of being filled from
/root/Engine.ini
and/root/Game.ini
, they're now filled from/config/Engine.ini
and/config/Game.ini
. If those files don't exist, they'll be populated with the default config that the server needs.So essentially pull the latest image, reboot your container, then add any custom config options to the files in
/config
and they'll apply (and persist) through container restarts :)I'm curious though, what customizations are you setting?