platform-codebase/features/webmap/backend-api/test/docker-compose.yml
Lilith e0288f0625 chore(attributes): 🔧 Update 27 YAML configuration files in attributes directory
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-01-31 17:52:27 -08:00

25 lines
549 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:
- '25437: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