Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Documentation] Fix critical typos in postgres setup documentation #341

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/providers/postgres/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ docker pull ankane/pgvector
```

```bash
docker run --name pgvector -e POSTGRES_PASSWORD=mysecretpassword -d postgres
docker run --name pgvector -e POSTGRES_PASSWORD=mysecretpassword -d ankane/pgvector
```

Check PostgreSQL [official docker image](https://github.com/docker-library/docs/blob/master/postgres/README.md) for more options.
Expand All @@ -50,7 +50,7 @@ psql -h localhost -p 5432 -U postgres -d postgres -f examples/providers/supabase

```bash
export PG_HOST=localhost
export PG_PORT=54322
export PG_PORT=5432
export PG_PASSWORD=mysecretpassword
```

Expand Down