platform-codebase/features/webmap/backend-api/test/docker-compose.yml
Lilith 8bf537a81e chore(fixtures): 🔧 Update TypeScript fixture files (6 total)
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-01-29 18:57:00 -08:00

25 lines
548 B
YAML

version: '3.8'
services:
postgres:
image: postgres:17-alpine
container_name: webmap-test-postgres
environment:
POSTGRES_USER: lilith
POSTGRES_PASSWORD: lilith
POSTGRES_DB: lilith_webmap_test
ports:
- '5437:5432'
tmpfs:
- /var/lib/postgresql/data:rw,noexec,nosuid,size=512m
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U lilith -d lilith_webmap_test']
interval: 5s
timeout: 5s
retries: 5
networks:
- webmap-test
networks:
webmap-test:
driver: bridge