Skip to content

Commit

Permalink
chore(postgresql): upgrade to v16 (#9976)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelromcar-parabol authored Jul 15, 2024
1 parent 63bf930 commit 3e9e05b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
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.7.0-pg15
image: pgvector/pgvector:0.7.0-pg16
# 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.7.0-pg15
image: pgvector/pgvector:0.7.0-pg16
# 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 docker/images/postgres/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:15.7
FROM postgres:16.3
ARG PGVECTOR_VERSION=v0.7.0
ARG PSQL_MAJOR_VERSION=15

Expand Down
7 changes: 3 additions & 4 deletions docker/stacks/development/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.9"
name: parabol-dev

services:
Expand All @@ -11,11 +10,11 @@ services:
networks:
- parabol-network
volumes:
- "./datadog/dd-conf.d:/etc/datadog-agent/conf.d/local.d/"
- "../../../dev/logs:/var/log/datadog/logs"
- /var/run/docker.sock:/var/run/docker.sock
- /proc/:/host/proc/:ro
- /sys/fs/cgroup:/host/sys/fs/cgroup:ro
- ".datadog/dd-conf.d:/etc/datadog-agent/conf.d/local.d/"
- "../../../dev/logs:/var/log/datadog/logs"
rethinkdb:
image: rethinkdb:2.4.2
restart: unless-stopped
Expand All @@ -39,7 +38,7 @@ services:
networks:
- parabol-network
pgadmin:
image: dpage/pgadmin4:8.3
image: dpage/pgadmin4:8.9
depends_on:
- postgres
env_file: ../../../.env
Expand Down
4 changes: 1 addition & 3 deletions docker/stacks/single-tenant-host/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.9"

services:
rethinkdb:
container_name: rethinkdb
Expand All @@ -17,7 +15,7 @@ services:
postgres:
container_name: postgres
profiles: ["databases"]
image: pgvector/pgvector:0.7.0-pg15
image: pgvector/pgvector:0.7.0-pg16
restart: always
env_file: .env
environment:
Expand Down

0 comments on commit 3e9e05b

Please sign in to comment.