Skip to content

Commit ff84d49

Browse files
ruvnetclaude
andcommitted
docs(postgres): Update README with Docker Hub image reference
- Update Docker badge to link to ruvnet/ruvector-postgres - Update docker run command to use correct image name - Add CLI docker install option in examples 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 59bf638 commit ff84d49

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

crates/ruvector-postgres/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Documentation](https://docs.rs/ruvector-postgres/badge.svg)](https://docs.rs/ruvector-postgres)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
66
[![PostgreSQL](https://img.shields.io/badge/PostgreSQL-14--17-blue.svg)](https://www.postgresql.org/)
7-
[![Docker](https://img.shields.io/badge/Docker-available-blue.svg)](https://hub.docker.com/r/ruvector/postgres)
7+
[![Docker](https://img.shields.io/badge/Docker-available-blue.svg)](https://hub.docker.com/r/ruvnet/ruvector-postgres)
88

99
**The most advanced PostgreSQL vector database extension.** A drop-in pgvector replacement with 53+ SQL functions, SIMD acceleration, 39 attention mechanisms, GNN layers, hyperbolic embeddings, and self-learning capabilities.
1010

@@ -29,10 +29,14 @@
2929
### Docker (Recommended)
3030

3131
```bash
32+
# Using Docker Hub
3233
docker run -d --name ruvector-pg \
3334
-e POSTGRES_PASSWORD=secret \
3435
-p 5432:5432 \
35-
ruvector/postgres:latest
36+
ruvnet/ruvector-postgres:latest
37+
38+
# Or using the CLI
39+
npx @ruvector/postgres-cli install --method docker
3640
```
3741

3842
### From Source
@@ -411,7 +415,8 @@ Install the CLI for easy management:
411415
npm install -g @ruvector/postgres-cli
412416

413417
# Commands
414-
ruvector-pg install # Install extension
418+
ruvector-pg install # Install via source (requires Rust)
419+
ruvector-pg install --method docker # Install via Docker (recommended)
415420
ruvector-pg vector create table --dim 384 --index hnsw
416421
ruvector-pg hyperbolic poincare-distance --a "[0.1,0.2]" --b "[0.3,0.4]"
417422
ruvector-pg gnn gcn --features "[[...]]" --adj "[[...]]"
File renamed without changes.

0 commit comments

Comments
 (0)