Compare commits

..

5 Commits

Author SHA1 Message Date
Alexey Skobkin de0359d681
Adding link to Drone environment variables reference.
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details
2022-08-13 23:12:31 +03:00
Alexey Skobkin 41e52003e0
Adding Docker image build to Drone CI configuration. 2022-08-13 23:12:26 +03:00
mitsuha_s 8d4b0f22c4
code style changes 2022-08-13 23:10:12 +03:00
mitsuha_s cf828287cb
add other used environment variables 2022-08-13 23:10:06 +03:00
Miroslavsckaya 3d40035f6b Docker image (#42)
continuous-integration/drone/push Build is passing Details
Reviewed-on: #42
Reviewed-by: Alexey Skobkin <skobkin-ru@ya.ru>
2022-08-13 19:41:19 +03:00
4 changed files with 30 additions and 11 deletions

View File

@ -14,4 +14,4 @@ README.md
# Environment
.env
.env.dist
.env.dist

2
.gitignore vendored
View File

@ -6,4 +6,4 @@
/__pycache__
# Environment
.env
.env

View File

@ -8,6 +8,11 @@ RUN pip install -r requirements.txt
ENV PYTHONUNBUFFERED=1
# App settings
ENV RSSBOT_DSN=xxx
ENV RSSBOT_TG_TOKEN=xxx
ENV LOG_LEVEL=INFO
# App settings
# https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING
ENV RSSBOT_DSN=postgres://username:password@hostname/database_name

View File

@ -45,27 +45,41 @@ export RSSBOT_DSN=xxx
python update.py
```
## Runnig the bot with Docker
## Running prebuild Docker Image
### Running the bot
```shell
docker build . -t tg_bot
docker run tg_bot
docker run -e RSSBOT_DSN=yyy RSSBOT_TG_TOKEN=xxx miroslavskaya/tg_rss_bot bot.py
```
## Runnig the update with Docker
### Running update
```shell
docker run -e RSSBOT_DSN=yyy RSSBOT_TG_TOKEN=xxx miroslavskaya/tg_rss_bot update.py
```
## Building and running Docker image from source
```shell
docker run tg_bot update.py
docker build . -t tg_rss_bot
```
## Running the bot with docker-compose
### Running the bot
```shell
docker run -e RSSBOT_DSN=yyy RSSBOT_TG_TOKEN=xxx tg_rss_bot bot.py
```
### Running update
```shell
docker run -e RSSBOT_DSN=yyy RSSBOT_TG_TOKEN=xxx tg_rss_bot update.py
```
## Using Docker Compose
### Running the bot
```shell
docker-compose up
```
## Running the update with docker-compose
### Running the update
```shell
docker-compose run app update.py
```
```