14 lines
No EOL
299 B
YAML
14 lines
No EOL
299 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_DB: donauschwaben
|
|
POSTGRES_USER: donauschwaben
|
|
POSTGRES_PASSWORD: devpassword
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_dev_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres_dev_data: |