chore: iios workspace skeleton (pnpm workspace, configs, postgres:5434)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-30 20:56:36 +05:30
commit c00d038df2
7 changed files with 120 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
postgres:
image: pgvector/pgvector:pg16
container_name: iios-db
environment:
POSTGRES_USER: iios
POSTGRES_PASSWORD: iios
POSTGRES_DB: iios
ports:
- "5434:5432"
volumes:
- iios_postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U iios"]
interval: 5s
timeout: 5s
retries: 10
volumes:
iios_postgres_data: