mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
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"
|