Set default ENABLE_AUTOLOADGAME_MOD to true in docker-compose

The ENABLE_AUTOLOADGAME_MOD variable has been updated to default to 'true' instead of 'null' in the docker-compose configuration. This change sets the game to autoload by default, eliminating the need for manual start of the game at each boot.
This commit is contained in:
norimicry 2024-03-30 12:19:04 -04:00
parent 97bb66912c
commit 656ee0bcb5

View File

@ -45,7 +45,7 @@ services:
# Auto Load Game mod # Auto Load Game mod
## Removing this will mean you need to VNC in to manually start the game each boot ## Removing this will mean you need to VNC in to manually start the game each boot
- ENABLE_AUTOLOADGAME_MOD=${ENABLE_AUTOLOADGAME-null} - ENABLE_AUTOLOADGAME_MOD=${ENABLE_AUTOLOADGAME-true}
- AUTO_LOAD_GAME_LAST_FILE_LOADED=${AUTO_LOAD_GAME_LAST_FILE_LOADED-null} - AUTO_LOAD_GAME_LAST_FILE_LOADED=${AUTO_LOAD_GAME_LAST_FILE_LOADED-null}
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true} - AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true} - AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}