Files
vibing/local-dev/compose.yml
Jarno Kiesiläinen daa75a2516
All checks were successful
Backend CI / Run Maven Tests (pull_request) Successful in 34s
fix: postgresql container volume
2025-08-11 17:27:25 +00:00

15 lines
264 B
YAML

services:
postgres:
image: postgres:15
ports:
- 5432:5432
environment:
POSTGRES_USER: vibing
POSTGRES_PASSWORD: vibing
POSTGRES_DB: vibing
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: