feat: docker compose file for db testing

This commit is contained in:
hexlocation 2025-04-26 19:02:05 +02:00
parent 6cb0f04170
commit f9bf400c8e

8
docker-compose.yml Normal file
View file

@ -0,0 +1,8 @@
version: '3'
services:
civil_test_db:
environment:
- POSTGRES_PASSWORD=TEST123
image: docker.io/postgres:16.3
ports:
- 127.0.0.1:5432:5432