test: add page hierarchy cycle integration harness

This commit is contained in:
Philipinho
2026-09-01 22:35:30 +01:00
parent dc8ed0ff06
commit 3e87ce9514
6 changed files with 223 additions and 0 deletions
@@ -0,0 +1,18 @@
name: docmost-cycle-test
services:
postgres:
image: postgres:18
environment:
POSTGRES_DB: docmost_cycle_test
POSTGRES_USER: docmost
POSTGRES_PASSWORD: docmost
ports:
- '127.0.0.1:55432:5432'
tmpfs:
- /var/lib/postgresql
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U docmost -d docmost_cycle_test']
interval: 2s
timeout: 2s
retries: 15