data-dwh-dbt-project/dev-dwh.docker-compose.yml
2024-02-15 15:36:04 +01:00

14 lines
No EOL
271 B
YAML

version: '3.8'
services:
dwh-local:
image: postgres:16
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- '5432:5432'
volumes:
- dwh-local:/var/lib/postgresql/data
volumes:
dwh-local:
driver: local