fix security issue, with notes being visible in public api response

This commit is contained in:
Amruth Pillai
2025-10-01 10:07:04 +02:00
parent 04dfcae898
commit c525f8d2cc
57 changed files with 227 additions and 151 deletions

View File

@ -16,7 +16,11 @@ services:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-postgres} -d ${POSTGRES_DB:-postgres}"]
test:
[
"CMD-SHELL",
"pg_isready -U ${POSTGRES_USER:-postgres} -d ${POSTGRES_DB:-postgres}",
]
interval: 10s
timeout: 5s
retries: 5