1
0
mirror of https://github.com/lus/pasty.git synced 2023-08-10 21:13:09 +03:00
pasty/docker-compose.dev.yml
Ringo Hoffmann 8cbb62070e
Add content length cap for paste creation endpoint (#8)
* 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>
2021-05-23 20:55:16 +02:00

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"