25 lines
549 B
YAML
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
|