Add local supabase for DB isolation

This commit is contained in:
MartinBraquet
2026-02-17 12:10:17 +01:00
parent b7d1fd9903
commit f7c0d77e9c
29 changed files with 2590 additions and 287 deletions

View File

@@ -0,0 +1,19 @@
services:
postgres-test:
image: postgres:15-alpine
environment:
POSTGRES_DB: test_db
POSTGRES_USER: test_user
POSTGRES_PASSWORD: test_password
ports:
- "5433:5432"
volumes:
- postgres-test-data:/var/lib/postgresql/data
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U test_user -d test_db" ]
interval: 5s
timeout: 5s
retries: 5
volumes:
postgres-test-data: