diff --git a/docker-compose.yml b/docker-compose.yml index 481997d..b97e11f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -25,7 +25,7 @@ services: ## These have their defualts set in the Dockerfile, and are safe to remove from this file # Prevents SteamCMD from updating the gamefiles - DISABLE_STEAMCMD: "false" + DISABLE_STEAMCMD: false # Where to located the config file, defaults to /data/Config.json # if config file does not exist, it will generate a template one at that location @@ -39,7 +39,8 @@ services: # list of mods to load, MOD_URLS: | - https://github.com/New-Project-Final-Final-WIP/HeadlessTweaks/releases/latest/download/HeadlessTweaks.dll + https://github.com/Raidriar796/StresslessHeadless/releases/download/2.0.0-rc1/StresslessHeadless.dll + # https://github.com/New-Project-Final-Final-WIP/HeadlessTweaks/releases/latest/download/HeadlessTweaks.dll # Controls the UID:GID of the headless, defaults to `root` if not set RUN_AS: 1000 diff --git a/scripts/03_download_mods.sh b/scripts/03_download_mods.sh index 3bb56b1..9087bf3 100755 --- a/scripts/03_download_mods.sh +++ b/scripts/03_download_mods.sh @@ -10,7 +10,9 @@ # Define file URLs and their associated positions file_urls=( "https://github.com/resonite-modding-group/ResoniteModLoader/releases/latest/download/ResoniteModLoader.dll /data/resonite/Headless/Libraries/ResoniteModLoader.dll" - "https://github.com/resonite-modding-group/ResoniteModLoader/releases/latest/download/0Harmony.dll /data/resonite/Headless/rml_libs/0Harmony.dll" + # "https://github.com/resonite-modding-group/ResoniteModLoader/releases/latest/download/0Harmony.dll /data/resonite/Headless/rml_libs/0Harmony.dll" + # net9 Harmony + "https://github.com/stiefeljackal/pardeike.Harmony/releases/download/temp-release/0Harmony.dll /data/resonite/Headless/rml_libs/0Harmony.dll" ) # Function to download a file from URL to destination