mirror of
https://github.com/timokz/flutter-vienna-hackathon-25.git
synced 2025-11-08 23:04:20 +01:00
16 lines
359 B
YAML
16 lines
359 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-trixie
|
|
container_name: postgres-dev
|
|
environment:
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
- POSTGRES_DB=${POSTGRES_DB}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
volumes:
|
|
- db-local:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8090:5432"
|
|
|
|
volumes:
|
|
db-local:
|