Skip to content

Commit cf419f4

Browse files
committed
Updated Postgres version for Docker [skip ci]
1 parent 8a2eebd commit cf419f4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ dist:
6666
git archive --format zip --prefix=$(EXTENSION)-$(EXTVERSION)/ --output dist/$(EXTENSION)-$(EXTVERSION).zip master
6767

6868
# for Docker
69-
PG_MAJOR ?= 16
69+
PG_MAJOR ?= 17
7070

7171
.PHONY: docker
7272

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,17 +1045,17 @@ If installation fails with `Access is denied`, re-run the installation instructi
10451045
Get the [Docker image](https://hub.docker.com/r/pgvector/pgvector) with:
10461046

10471047
```sh
1048-
docker pull pgvector/pgvector:pg16
1048+
docker pull pgvector/pgvector:pg17
10491049
```
10501050

1051-
This adds pgvector to the [Postgres image](https://hub.docker.com/_/postgres) (replace `16` with your Postgres server version, and run it the same way).
1051+
This adds pgvector to the [Postgres image](https://hub.docker.com/_/postgres) (replace `17` with your Postgres server version, and run it the same way).
10521052

10531053
You can also build the image manually:
10541054

10551055
```sh
10561056
git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git
10571057
cd pgvector
1058-
docker build --pull --build-arg PG_MAJOR=16 -t myuser/pgvector .
1058+
docker build --pull --build-arg PG_MAJOR=17 -t myuser/pgvector .
10591059
```
10601060

10611061
### Homebrew

0 commit comments

Comments
 (0)