Skip to content

Commit

Permalink
⬆️(backend) update postgres to version 16.4
Browse files Browse the repository at this point in the history
Upgrade postgres in our CI and compose to version
16.4 to match the next server upgrade.
  • Loading branch information
claudusd committed Nov 18, 2024
1 parent 171ae7c commit 931c14a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,12 @@ jobs:
DB_PASSWORD: pass
DB_PORT: 5432
# services
- image: cimg/postgres:12.10
- image: cimg/postgres:16.4
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
environment:
POSTGRES_DB: test_richie
POSTGRES_DB: richie
POSTGRES_USER: fun
POSTGRES_PASSWORD: pass
- image: elasticsearch:7.14.0
Expand Down Expand Up @@ -440,12 +440,12 @@ jobs:
DB_PASSWORD: pass
DB_PORT: 5432
# services
- image: cimg/postgres:12.10
- image: cimg/postgres:16.4
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
environment:
POSTGRES_DB: test_richie
POSTGRES_DB: richie
POSTGRES_USER: fun
POSTGRES_PASSWORD: pass
- image: fundocker/openshift-elasticsearch:6.6.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ test-back:
DB_USER: richie_user
DB_PASSWORD: pass
DB_PORT: 5432
- image: cimg/postgres:12.10
- image: cimg/postgres:16.4
environment:
POSTGRES_DB: richie
POSTGRES_USER: richie_user
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
db:
image: postgres:12
image: postgres:16.4
environment:
- POSTGRES_DB=richie_${RICHIE_SITE:?}
env_file:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-postgresql.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgresql:
image: postgres:12
image: postgres:16.4
ports:
- "5472:5432"
env_file:
Expand Down

0 comments on commit 931c14a

Please sign in to comment.