add running the bot and runnig update with Docker documentation to README.md; add .env.dist to .dockerignore; set default value to LOG_LEVEL in .env.dist
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
mitsuha_s 2022-08-05 00:40:22 +03:00
parent 8a82511618
commit 41b7eb32b6
3 changed files with 28 additions and 2 deletions

View File

@ -13,4 +13,5 @@ pylama.ini
README.md
# Environment
.env
.env
.env.dist

View File

@ -5,4 +5,4 @@ RSSBOT_TG_TOKEN=1234567890:yourbotstoken
# POSTGRES_USER=xxx
# POSTGRES_PASSWORD=xxx
# POSTGRES_DB=xxx
# LOG_LEVEL=xxx
# LOG_LEVEL=INFO

View File

@ -43,4 +43,29 @@ python bot.py
export RSSBOT_TG_TOKEN=xxx
export RSSBOT_DSN=xxx
python update.py
```
## Runnig the bot with Docker
```shell
docker build . -t tg_bot
docker run tg_bot
```
## Runnig the update with Docker
```shell
docker run tg_bot update.py
```
## Running the bot with docker-compose
```shell
docker-compose up
```
## Running the update with docker-compose
```shell
docker-compose run app update.py
```