renamed port and fps parameter

This commit is contained in:
Djeeberjr 2022-08-29 13:53:17 +02:00
parent 72ed93825e
commit 209a23db16
2 changed files with 6 additions and 4 deletions

View File

@ -6,6 +6,8 @@ Use the `downloadMods.sh` to download mods to a volume.
# Environment variables # Environment variables
`PORT` - Port to listen on. default: 2302
`LIMIT_FPS` - Limit the fps of the server
`STEAM_USER` - Steam username `STEAM_USER` - Steam username
`STEAM_PASSWORD` - Steam password `STEAM_PASSWORD` - Steam password
`WORKSHOP_COLLECTION` - id of a steam workshop collection. Used to load mods `WORKSHOP_COLLECTION` - id of a steam workshop collection. Used to load mods

View File

@ -34,12 +34,12 @@ fi
# https://community.bistudio.com/wiki/Arma_3:_Startup_Parameters#Server_Options # https://community.bistudio.com/wiki/Arma_3:_Startup_Parameters#Server_Options
SERVER_ARGS="-name server -config=$VOLUME_HOME/config/config.cfg -profiles=$VOLUME_HOME/config/profiles" SERVER_ARGS="-name server -config=$VOLUME_HOME/config/config.cfg -profiles=$VOLUME_HOME/config/profiles"
if [ -n "$A3_LIMIT_FPS" ]; then if [ -n "$LIMIT_FPS" ]; then
SERVER_ARGS="${SERVER_ARGS} -limitFPS=${A3_LIMIT_FPS}" SERVER_ARGS="${SERVER_ARGS} -limitFPS=${LIMIT_FPS}"
fi fi
if [ -n "$A3_PORT" ]; then if [ -n "$PORT" ]; then
SERVER_ARGS="${SERVER_ARGS} -port=${A3_PORT}" SERVER_ARGS="${SERVER_ARGS} -port=${PORT}"
fi fi
# #