Adding Festinger with wordnet
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user