mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-17 21:43:46 +00:00
update sample files
This commit is contained in:
parent
15bd013eaa
commit
6df4546b81
@ -33,11 +33,11 @@
|
|||||||
},
|
},
|
||||||
"ratingsPolls": {
|
"ratingsPolls": {
|
||||||
"variants": {
|
"variants": {
|
||||||
"Круть": 2,
|
"Cool": 2,
|
||||||
"Ок": 1,
|
"Ok": 1,
|
||||||
"Не ок": -1,
|
"Not ok": -1,
|
||||||
"Совсем не ок": -2,
|
"Inappropriate": -2,
|
||||||
"Посмотреть результаты": 0
|
"Results": 0
|
||||||
},
|
},
|
||||||
"autoAttach": true,
|
"autoAttach": true,
|
||||||
"ratingOfferText": "What do you think about it?"
|
"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"
|
Loading…
Reference in New Issue
Block a user