Adding Festinger with wordnet

This commit is contained in:
2026-04-19 16:16:13 +02:00
parent a27aa713d3
commit 8ff73d32ae
48 changed files with 485400 additions and 0 deletions
+34
View File
@@ -90,6 +90,37 @@ services:
extra_hosts:
- "host.docker.internal:host-gateway"
postgres:
image: postgres:16-alpine
container_name: festinger-postgres
restart: unless-stopped
environment:
POSTGRES_USER: festinger
POSTGRES_PASSWORD: festinger
POSTGRES_DB: festinger
volumes:
- festinger-pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U festinger"]
interval: 5s
timeout: 5s
retries: 10
festinger:
build:
context: ./plugins/festinger
container_name: festinger
ports:
- "11435:11434" # exposed on host as 11435 to avoid conflict with real Ollama
restart: unless-stopped
depends_on:
postgres:
condition: service_healthy
environment:
POSTGRES_DSN: "postgresql://festinger:festinger@postgres:5432/festinger"
extra_hosts:
- "host.docker.internal:host-gateway"
glitch-tunnel:
build:
context: .
@@ -105,3 +136,6 @@ services:
- rind
- abyssinthia
- gerhard
volumes:
festinger-pgdata: