readme update
All checks were successful
Actions Build Docker Image / Explore-Gitea-Actions (push) Successful in 2m16s

This commit is contained in:
Alex Borisov 2024-01-29 22:12:36 +03:00
parent 99056c42d9
commit d3ab18f1b7

View File

@ -28,6 +28,23 @@ add vk and ok tokens to env file.
> Вечный access_token - Получить новый \ > Вечный access_token - Получить новый \
> application_secret_key = Session_secret_key \ > application_secret_key = Session_secret_key \
run docker container
```bash
docker run -e VK_TOKEN='VK_TOKEN_HERE' \
-e API_BOT_TOKEN='API_BOT_TOKEN_HERE' \
-e VK_ALBUM_ID='VK_ALBUM_ID' \
-e OK_ACCESS_TOKEN='OK_ACCESS_TOKEN_HERE' \
-e OK_APPLICATION_KEY='OK_APPLICATION_KEY_HERE' \
-e OK_APPLICATION_SECRET_KEY='OK_APPLICATION_SECRET_KEY_HERE' \
-e OK_GROUP_ID='OK_GROUP_ID_HERE' \
-e SD_HOST='127.0.0.1' \
-e SD_PORT='7861' \
-e SD_USERNAME='user' \
-e SD_PASSWORD='1234' \
-e DEBUG='no' \
soaska.ru/soaska/sd_telegram:latest
```
run bot with python run bot with python
```bash ```bash
python -m venv venv python -m venv venv
@ -35,7 +52,7 @@ source venv/bin/activate
pip install -m requirements.txt pip install -m requirements.txt
python bot.py python bot.py
``` ```
run bot in docker build bot in docker
```bash ```bash
docker build -t soaska/sd_bot . docker build -t soaska/sd_bot .
docker run soaska/sd_bot docker run soaska/sd_bot