Sign inSign up

jamals86/pg-kalam

By jamals86

Updated 2 days ago

PostgreSQL with the pg_kalam/pgvector preinistalled to connect KalamDB server.

Image
Machine learning & AI
Developer tools
Databases & storage
1

6.0K

jamals86/pg-kalam repository overview

pg-kalam on Docker Hub

PostgreSQL with the pg_kalam extension preinstalled so you can connect PostgreSQL foreign tables to a remote KalamDB server.

This image packages stock PostgreSQL with the pg_kalam foreign data wrapper extension already installed.

What you get

  • A PostgreSQL runtime image with pg_kalam.so, pg_kalam.control, and the extension SQL files already installed
  • CREATE EXTENSION pg_kalam; support without a separate extension build step in the container
  • A ready-to-run base for local testing, CI, and production images that need PostgreSQL to talk to KalamDB

Quick start

Pull the image:

docker pull jamals86/pg-kalam:latest

Run PostgreSQL with the extension available:

docker run --name pg-kalam \
  -e POSTGRES_DB=kalamdb \
  -e POSTGRES_USER=kalamdb \
  -e POSTGRES_PASSWORD=kalamdb123 \
  -p 5432:5432 \
  -d jamals86/pg-kalam:latest

Then enable the extension:

CREATE EXTENSION IF NOT EXISTS pg_kalam;

Connect to KalamDB

After the extension is enabled, create a foreign server that points at your running KalamDB instance.

Tag summary

Content type

Image

Digest

sha256:ae58731e2

Size

153.5 MB

Last updated

2 days ago

docker pull jamals86/pg-kalam:latest-pg16