Skip to content

Commit

Permalink
⬆️(backend) upgrade postgresql docker images to 13.16
Browse files Browse the repository at this point in the history
As we want to update our postgres server to version 13.16, we use it locally and
 in our CI as well.
  • Loading branch information
jbpenrath committed Oct 21, 2024
1 parent 6543a2a commit 267adc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ jobs:
DB_PASSWORD: pass
DB_PORT: 5432
# services
- image: cimg/postgres:12.10
- image: cimg/postgres:13.16
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down Expand Up @@ -438,7 +438,7 @@ jobs:
DB_PASSWORD: pass
DB_PORT: 5432
# services
- image: cimg/postgres:12.10
- image: cimg/postgres:13.16
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
db:
image: postgres:12
image: postgres:13.16
environment:
- POSTGRES_DB=richie_${RICHIE_SITE:?}
env_file:
Expand Down
3 changes: 1 addition & 2 deletions 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:13.16
ports:
- "5472:5432"
env_file:
Expand All @@ -16,4 +16,3 @@ services:
postgresql:
condition: service_healthy
restart: true

0 comments on commit 267adc5

Please sign in to comment.