Docker image #42

Merged
Miroslavsckaya merged 13 commits from feature_docker into master 2022-08-13 16:41:20 +00:00
3 changed files with 28 additions and 2 deletions
Showing only changes of commit 41b7eb32b6 - Show all commits

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
```