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

chore(postgres): Postgres upgraded to 15.7 and pgvector to 0.7.0 #9941

Merged
merged 2 commits into from
Jul 8, 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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id-token: "write"
services:
postgres:
image: pgvector/pgvector:0.6.2-pg15
image: pgvector/pgvector:0.7.0-pg15
# This env variables must be the same in the file PARABOL_BUILD_ENV_PATH
env:
POSTGRES_PASSWORD: "temppassword"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id-token: "write"
services:
postgres:
image: pgvector/pgvector:0.6.2-pg15
image: pgvector/pgvector:0.7.0-pg15
# This env variables must be the same in the file PARABOL_BUILD_ENV_PATH
env:
POSTGRES_PASSWORD: "temppassword"
Expand Down
6 changes: 3 additions & 3 deletions docker/images/postgres/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM postgres:15.4
ARG PGVECTOR_VERSION=v0.6.1
FROM postgres:15.7
ARG PGVECTOR_VERSION=v0.7.0
ARG PSQL_MAJOR_VERSION=15

ADD extensions /extensions
COPY extensions /extensions

RUN apt-get update && apt-get install -y \
build-essential \
Expand Down
2 changes: 1 addition & 1 deletion docker/stacks/single-tenant-host/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
postgres:
container_name: postgres
profiles: ["databases"]
image: pgvector/pgvector:0.6.2-pg15
image: pgvector/pgvector:0.7.0-pg15
restart: always
env_file: .env
environment:
Expand Down
Loading