Skip to content

Commit

Permalink
Upgrade to Postgres 17
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelKonrad authored and manuelprinz committed Feb 12, 2025
1 parent 0521a23 commit 14264c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ services:
- 'neo4j-data:/data'

postgres:
image: postgres:11
image: postgres:17
expose:
- '5432'
ports:
Expand All @@ -72,7 +72,7 @@ services:
POSTGRES_PASSWORD: postgres
PGDATA: /var/lib/postgresql/data/pgdata
healthcheck:
test: [ "CMD-SHELL", "pg_isready", "-U", "$$POSTGRES_USER" ]
test: [ "CMD-SHELL", "pg_isready -U $${POSTGRES_USER}" ]
interval: 5s
timeout: 10s
retries: 10
Expand Down
2 changes: 1 addition & 1 deletion constants/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ buildConfig {

buildConfigField("APP_NAME", rootProject.name)
buildConfigField("CONTAINER_IMAGE_NEO4J", "neo4j:5-community")
buildConfigField("CONTAINER_IMAGE_POSTGRES", "postgres:11")
buildConfigField("CONTAINER_IMAGE_POSTGRES", "postgres:17")
buildConfigField("CONTAINER_IMAGE_KEYCLOAK", "registry.gitlab.com/tibhannover/orkg/keycloak-docker-image:26.0.5")
}

0 comments on commit 14264c3

Please sign in to comment.