mirror of
https://github.com/BillyOutlast/drop.git
synced 2026-02-04 00:31:17 +01:00
15 lines
268 B
YAML
15 lines
268 B
YAML
services:
|
|
postgres:
|
|
image: postgres:14-alpine
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_PASSWORD=drop
|
|
- POSTGRES_USER=drop
|
|
- POSTGRES_DB=drop
|
|
|
|
volumes:
|
|
postgres-data:
|