You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently trying to get a Minecraft server copied over from my Windows desktop to my Unraid NAS that's running a FeedTheBeast modpack. However, the current Docker config does not allow me to set the necessary startup args that are necessary (or at least recommended).
Specifically, the command line I'm currently using is:
-server, -Xmx, -Xms, -jar, and nogui are all already either configurable or not necessary. However, UseG1GC and UnlockExperimentalVMOptions are not. Additionally, I believe UseG1GC conflicts with the -XX:ParallelGCThreads that is currently getting passed in.
Would it be possible to add the option to set these properly? Or alternatively, adding the option for a CUSTOM_STARTUP_COMMAND variable or similar that, if set, overrides the current startup command?
The text was updated successfully, but these errors were encountered:
gabriel-andreescu
added a commit
to gabriel-andreescu/arch-minecraftserver
that referenced
this issue
Mar 7, 2022
I'm currently trying to get a Minecraft server copied over from my Windows desktop to my Unraid NAS that's running a FeedTheBeast modpack. However, the current Docker config does not allow me to set the necessary startup args that are necessary (or at least recommended).
Specifically, the command line I'm currently using is:
java.exe -server -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -Xmx6144M -Xms4096M -jar forge-1.12.2-14.23.5.2846-universal.jar nogui
-server
,-Xmx
,-Xms
,-jar
, andnogui
are all already either configurable or not necessary. However,UseG1GC
andUnlockExperimentalVMOptions
are not. Additionally, I believeUseG1GC
conflicts with the-XX:ParallelGCThreads
that is currently getting passed in.Would it be possible to add the option to set these properly? Or alternatively, adding the option for a
CUSTOM_STARTUP_COMMAND
variable or similar that, if set, overrides the current startup command?The text was updated successfully, but these errors were encountered: