15 lines
280 B
YAML
15 lines
280 B
YAML
services:
|
|
postgres:
|
|
image: postgres:15-alpine
|
|
environment:
|
|
POSTGRES_USER: admin
|
|
POSTGRES_PASSWORD: development_password
|
|
POSTGRES_DB: tehriehlbudget
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
pgdata:
|