PostgreSQL with the pg_kalam/pgvector preinistalled to connect KalamDB server.
6.0K
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.
pg_kalam.so, pg_kalam.control, and the extension SQL files already installedCREATE EXTENSION pg_kalam; support without a separate extension build step in the containerPull 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;
After the extension is enabled, create a foreign server that points at your running KalamDB instance.
Content type
Image
Digest
sha256:ae58731e2…
Size
153.5 MB
Last updated
2 days ago
docker pull jamals86/pg-kalam:latest-pg16