From 827834449fe49a74ecd3994ea4db3b03721a10c2 Mon Sep 17 00:00:00 2001 From: ITQ Date: Sun, 26 Jan 2025 14:05:56 +0300 Subject: [PATCH] chore: removed sending logs to telegram by removing env vars --- solution/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/solution/Dockerfile b/solution/Dockerfile index e371040..6b9df72 100644 --- a/solution/Dockerfile +++ b/solution/Dockerfile @@ -54,9 +54,7 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ # Set env vars for app (sorry for that) ENV DJANGO_DEBUG=False \ - DJANGO_ALLOWED_HOSTS=* \ - DJANGO_NOTIFIER_TELEGRAM_BOT_TOKEN=6196898691:AAHtiIgbLAHlELGqO4qmrKoqjWaEJohr9fY \ - DJANGO_NOTIFIER_TELEGRAM_CHAT_ID=826812483 + DJANGO_ALLOWED_HOSTS=* # Start gunicorn CMD python manage.py migrate && gunicorn config.wsgi -b ${SERVER_ADDRESS}