####################################################################################################### ### Settings used in compose.yml - Don't forget to RESTART the container(s) after changing this file. # ####################################################################################################### # TODO for you: Check whether the "1001" ID defaults below match the "dsmrreader" user on your system (used in both containers) DUID=1001 DGID=1001 ################################################### #### Database settings for the "dsmrdb" container # ################################################### # These must match with the settings configured in "dsmr" below. TZ=Europe/Amsterdam PG_TZ=Europe/Amsterdam POSTGRES_DB=dsmrreader POSTGRES_USER=dsmrreader_user POSTGRES_PASSWORD=dsmrreader_password ############################################################################################################################### ### Application settings for the "dsmr" container # ### DSMR-reader specific settings: https://dsmr-reader.readthedocs.io/en/v6/reference/environment-variables/ # ### Xirixiz container specific settings: https://github.com/xirixiz/dsmr-reader-docker?tab=readme-ov-file#setup--parameters # ############################################################################################################################### # These must match with the settings configured in "dsmrdb" above. DJANGO_DATABASE_HOST=dsmrdb DJANGO_DATABASE_NAME=dsmrreader DJANGO_DATABASE_USER=dsmrreader_user DJANGO_DATABASE_PASSWORD=dsmrreader_password TZ=Europe/Amsterdam DJANGO_TIME_ZONE=Europe/Amsterdam VIRTUAL_HOST=localhost # Only enable debug logging for DSMR-reader for troubleshooting as it LOGS A LOT. # DSMRREADER_LOGLEVEL=DEBUG # TODO for you: Change this if you want to use Xirixiz's built-in datalogger mapping. Set to "standalone" to resort to DSMR-reader's internals. CONTAINER_RUN_MODE=standalone # TODO for you: Set DJANGO_SECRET_KEY below to a truly random value. E.g. by using https://www.lastpass.com/features/password-generator - 50 characters and NO symbols DJANGO_SECRET_KEY= # TODO for you: Set an admin interface username (and password) to your liking - make it a strong one if you host DSMR-reader publicly facing the Internet DSMRREADER_ADMIN_USER= DSMRREADER_ADMIN_PASSWORD= # TODO for you: If you run DSMR-reader with an imported backup and first want to try it WITHOUT running background processes, enable this. Drop it otherwise. # DSMRREADER_BACKEND_HIBERNATE=True