platform-codebase/features/webmap/e2e/docker-compose.yml
Lilith 72be8a062a chore(email): 🔧 Update TypeScript compiler options in email backend test config
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-01-29 19:02:27 -08:00

25 lines
552 B
YAML

version: '3.8'
services:
postgres:
image: postgres:17-alpine
container_name: webmap-e2e-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