claude/heroku-clone-mvp-plan-NREhc #1

Merged
sander merged 42 commits from claude/heroku-clone-mvp-plan-NREhc into main 2026-03-29 07:24:40 +00:00
Showing only changes of commit 22a6ab103c - Show all commits

View file

@ -73,6 +73,11 @@ services:
- hiy-pg-data:/var/lib/postgresql/data
# SQL files here run once on first init (ignored if data volume already exists).
- ./postgres-init:/docker-entrypoint-initdb.d:ro
healthcheck:
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
interval: 5s
timeout: 5s
retries: 10
networks:
- hiy-net
@ -96,7 +101,8 @@ services:
volumes:
- forgejo-data:/data
depends_on:
- postgres
postgres:
condition: service_healthy
networks:
- hiy-net