sync: migrate ai-operator to Gitea (2026-08-10)

This commit is contained in:
konturai-ops
2026-08-10 15:26:52 +00:00
commit 53652b95ad
173 changed files with 16676 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
services:
ai-operator-postgres:
image: pgvector/pgvector:pg16
container_name: ai-operator-postgres
restart: unless-stopped
env_file:
- /etc/ai-operator/postgres.env
ports:
- "127.0.0.1:${AI_OPERATOR_POSTGRES_PORT:-5432}:5432"
volumes:
- ai_operator_postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
interval: 5s
timeout: 5s
retries: 20
volumes:
ai_operator_postgres_data: