From 76dfde05f7907fee41b2a7c562107293406dfe77 Mon Sep 17 00:00:00 2001 From: chiko Date: Sun, 26 Oct 2025 14:03:29 +0100 Subject: [PATCH] added more env vars --- .env.sample | 8 +++++++- docker/docker-entrypoint.sh | 7 +++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.env.sample b/.env.sample index a21ab9f..c4a6fb1 100644 --- a/.env.sample +++ b/.env.sample @@ -1,9 +1,15 @@ +TZ=Europe/Berlin +DB_FILEPATH=./data/db +DB_FILENAME=77th_eventntfy.db +apprise_https=false +apprise_hostname=apprise +apprise_port=8000 +notification_mock=true ntfy_on=true ntfy_username=chiko ntfy_password=Blub ntfy_host=ntfy.some-service.com ntfy_topic=SomeTopic - dc_on=true dc_webhook=123123123123123/ABCDEFABCDEFABCDEFABCDEFABCDEFABCDEFABCDEF dc_botname=Botname Here diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh index 4138e55..c7fadb5 100644 --- a/docker/docker-entrypoint.sh +++ b/docker/docker-entrypoint.sh @@ -7,6 +7,13 @@ chmod +x /etc/cron-env.sh # Write the Env Vars into a file for cron. happens during runtime of the container and not build. # List your environment variables here env_vars=( + TZ + DB_FILEPATH + DB_FILENAME + apprise_https + apprise_hostname + apprise_port + notification_mock ntfy_on ntfy_username ntfy_password