diff --git a/CHANGELOG.md b/CHANGELOG.md index 00694c9e..4a7fdf86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [0.11.0] - TBD ### Changed - Configuration environment variables are now uppercase and prefixed with FSM +- Docker: `factorio.auth` and `mod_packs` moved into `/opt/fsm-data` volume. ## [0.10.1] - 2021-03-09 ### Fixed diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 328b25dc..2fde6c54 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -10,6 +10,8 @@ init_config() { jq_cmd="${jq_cmd} | .sq_lite_database_file = \"/opt/fsm-data/sqlite.db\"" jq_cmd="${jq_cmd} | .log_file = \"/opt/fsm-data/factorio-server-manager.log\"" + jq_cmd="${jq_cmd} | .factorio_credentials_file = \"/opt/fsm-data/factorio.auth\"" + jq_cmd="${jq_cmd} | .mod_pack_dir = \"/opt/fsm-data/mod_packs\"" jq "${jq_cmd}" /opt/fsm/conf.json >/opt/fsm-data/conf.json }