mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
8cbb62070e
* add content length cap * add development docker compose stack * Fix paste creation error notification data * Add length cap to hastebin endpoint as well * Mention length cap in Readme Co-authored-by: Lukas Schulte Pelkum <kbrt@protonmail.com>
17 lines
280 B
YAML
17 lines
280 B
YAML
version: "3"
|
|
|
|
volumes:
|
|
postgres:
|
|
|
|
services:
|
|
postgres:
|
|
image: "postgres:12-alpine"
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- "postgres:/var/lib/postgresql/data"
|
|
environment:
|
|
POSTGRES_PASSWORD: "dev"
|
|
POSTGRES_USER: "dev"
|
|
POSTGRES_DB: "pasty"
|