docker-compose.yml: Add PostGIS envvar to create database on initial setup.

This commit is contained in:
Jivan Pal
2025-05-14 21:38:37 +01:00
parent 397fce7647
commit 3822265785

View File

@@ -29,6 +29,7 @@ services:
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: dawarich_development
restart: always
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U postgres -d dawarich_development" ]