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

update docker tag #43

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
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 src/admin/fdw.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ In this tutorial, we will use docker compose to deploy two PostgreSQL clusters.
$ echo 'version: "3.7"
services:
local_db:
image: tensorchord/pgvecto-rs:pg15-v0.1.13
image: tensorchord/pgvecto-rs:pg15-v0.2.0
ports:
- "5432:5432"
environment:
Expand All @@ -25,7 +25,7 @@ services:
localnet:

forigen_db:
image: tensorchord/pgvecto-rs:pg15-v0.1.13
image: tensorchord/pgvecto-rs:pg15-v0.2.0
ports:
- "5433:5432"
environment:
Expand Down
4 changes: 2 additions & 2 deletions src/admin/logical_replication.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ We will show you how to use logical replication to replicate data from one Postg
$ echo 'version: "3.7"
services:
source_db:
image: tensorchord/pgvecto-rs:pg15-v0.1.13
image: tensorchord/pgvecto-rs:pg15-v0.2.0
ports:
- "5432:5432"
environment:
Expand All @@ -24,7 +24,7 @@ services:
localnet:

target_db:
image: tensorchord/pgvecto-rs:pg15-v0.1.13
image: tensorchord/pgvecto-rs:pg15-v0.2.0
ports:
- "5433:5432"
environment:
Expand Down
2 changes: 1 addition & 1 deletion src/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ docker run \
--name pgvecto-rs-demo \
-e POSTGRES_PASSWORD=mysecretpassword \
-p 5432:5432 \
-d tensorchord/pgvecto-rs:pg16-v0.1.13
-d tensorchord/pgvecto-rs:pg16-v0.2.0
```

Then you can connect to the database using the `psql` command line tool. The default username is `postgres`, and the default password is `mysecretpassword`.
Expand Down
2 changes: 1 addition & 1 deletion src/getting-started/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ docker run \
--name pgvecto-rs-demo \
-e POSTGRES_PASSWORD=mysecretpassword \
-p 5432:5432 \
-d tensorchord/pgvecto-rs:pg16-v0.1.13
-d tensorchord/pgvecto-rs:pg16-v0.2.0
```

Then you can connect to the database using the `psql` command line tool. The default username is `postgres`, and the default password is `mysecretpassword`.
Expand Down
2 changes: 1 addition & 1 deletion src/integration/langchain.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ docker run \
--name pgvecto-rs-demo \
-e POSTGRES_PASSWORD=mysecretpassword \
-p 5432:5432 \
-d tensorchord/pgvecto-rs:pg16-v0.1.13
-d tensorchord/pgvecto-rs:pg16-v0.2.0
```

Then you can connect to the database using the `psql` command line tool. The default username is `postgres`, and the default password is `mysecretpassword`.
Expand Down
2 changes: 1 addition & 1 deletion src/integration/llama-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ docker run \
--name pgvecto-rs-demo \
-e POSTGRES_PASSWORD=mysecretpassword \
-p 5432:5432 \
-d tensorchord/pgvecto-rs:pg16-v0.1.13
-d tensorchord/pgvecto-rs:pg16-v0.2.0
```

Then you can connect to the database using the `psql` command line tool. The default username is `postgres`, and the default password is `mysecretpassword`.
Expand Down