services: postgres: image: pgvector/pgvector:pg16 container_name: plugin-sql-test-postgres environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: eliza_test ports: - "5432:5432" healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres"] interval: 5s timeout: 5s retries: 5 volumes: - ./scripts/init-test-db.sql:/docker-entrypoint-initdb.d/init.sql:ro