mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2025-12-05 04:25:39 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6df4546b81 | |||
| 15bd013eaa | |||
| 39b607c4e7 | |||
| 98f3e2a461 | |||
| 0d31d90efd |
@@ -10,4 +10,4 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.3.0
|
||||
version=0.4.0
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
kotlin = "1.8.22"
|
||||
kotlin-serialization = "1.5.1"
|
||||
|
||||
plagubot = "7.1.0"
|
||||
tgbotapi = "9.1.0"
|
||||
plagubot = "7.2.1"
|
||||
tgbotapi = "9.2.1"
|
||||
microutils = "0.19.9"
|
||||
kslog = "1.1.2"
|
||||
krontab = "2.1.2"
|
||||
plagubot-plugins = "0.14.0"
|
||||
plagubot-plugins = "0.15.1"
|
||||
|
||||
dokka = "1.8.20"
|
||||
|
||||
|
||||
@@ -33,11 +33,11 @@
|
||||
},
|
||||
"ratingsPolls": {
|
||||
"variants": {
|
||||
"Круть": 2,
|
||||
"Ок": 1,
|
||||
"Не ок": -1,
|
||||
"Совсем не ок": -2,
|
||||
"Посмотреть результаты": 0
|
||||
"Cool": 2,
|
||||
"Ok": 1,
|
||||
"Not ok": -1,
|
||||
"Inappropriate": -2,
|
||||
"Results": 0
|
||||
},
|
||||
"autoAttach": true,
|
||||
"ratingOfferText": "What do you think about it?"
|
||||
|
||||
23
runner/sample.docker-compose.yml
Normal file
23
runner/sample.docker-compose.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
version: "3.4"
|
||||
|
||||
services:
|
||||
plaguposter_postgres:
|
||||
image: postgres:15.4-bullseye
|
||||
container_name: "plaguposter_postgres"
|
||||
restart: "unless-stopped"
|
||||
environment:
|
||||
POSTGRES_USER: "test"
|
||||
POSTGRES_PASSWORD: "test"
|
||||
POSTGRES_DB: "test"
|
||||
volumes:
|
||||
- "./db/:/var/lib/postgresql/data"
|
||||
ports:
|
||||
- "127.0.0.1:8091:5432"
|
||||
plaguposter:
|
||||
image: insanusmokrassar/plaguposter:latest
|
||||
container_name: "plaguposter"
|
||||
restart: "unless-stopped"
|
||||
volumes:
|
||||
- "./config.json:/config.json"
|
||||
depends_on:
|
||||
- "plaguposter_postgres"
|
||||
Reference in New Issue
Block a user