diff --git a/deploy/aktienbot/.env.bot b/deploy/aktienbot/.env.bot index c64cd3c..8b67787 100644 --- a/deploy/aktienbot/.env.bot +++ b/deploy/aktienbot/.env.bot @@ -1,3 +1,6 @@ BOT_API_KEY= NEWS_API_KEY= SECRET_KEY= + +BOT_EMAIL= +BOT_PASSWORD= \ No newline at end of file diff --git a/deploy/aktienbot/docker-compose.yml b/deploy/aktienbot/docker-compose.yml index 991bbdf..46aee48 100644 --- a/deploy/aktienbot/docker-compose.yml +++ b/deploy/aktienbot/docker-compose.yml @@ -30,11 +30,6 @@ services: env_file: - ${PWD}/.env.bot - aktienbot_bot_updates: - image: registry.flokaiser.com/aktienbot/bot_updates - env_file: - - ${PWD}/.env.bot - mariadb: image: mariadb volumes: diff --git a/telegram_bot/Dockerfile b/telegram_bot/Dockerfile index e5c4106..c2fc640 100644 --- a/telegram_bot/Dockerfile +++ b/telegram_bot/Dockerfile @@ -11,4 +11,4 @@ RUN pip install -r requirements.txt --src /usr/local/src --no-warn-script-locati COPY telegram_bot /srv/flask_app # Run the application -ENTRYPOINT ["/bin/sh", "-c", "python bot.py && python bot_updates.py"] +ENTRYPOINT ["/bin/sh", "-c", "'python bot.py && python bot_updates.py'"]