diff --git a/docker-compose.yml b/docker-compose.yml index 626d73e43..97767274e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -21,7 +21,7 @@ services: KAFKA_LOG4J_ROOT_LOGLEVEL: INFO CLUSTER_ID: ZGE2MTQ4NDk4NGU3NDE2Mm postgres: - image: stellio/stellio-timescale-postgis:16-2.16.0-3.3 + image: stellio/stellio-timescale-postgis:16-2.17.2-3.5 container_name: "${CONTAINER_NAME_PREFIX}stellio-postgres" environment: - POSTGRES_USER=${POSTGRES_USER} diff --git a/search-service/docker-compose.yml b/search-service/docker-compose.yml index 16ae80535..0d4ad09be 100644 --- a/search-service/docker-compose.yml +++ b/search-service/docker-compose.yml @@ -22,7 +22,7 @@ services: - ../config/kafka/update_run.sh:/tmp/update_run.sh command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'" postgres: - image: stellio/stellio-timescale-postgis:16-2.16.0-3.3 + image: stellio/stellio-timescale-postgis:16-2.17.2-3.5 container_name: stellio-postgres environment: - POSTGRES_USER=${POSTGRES_USER} diff --git a/search-service/src/test/kotlin/com/egm/stellio/search/support/WithTimescaleContainer.kt b/search-service/src/test/kotlin/com/egm/stellio/search/support/WithTimescaleContainer.kt index 523375923..879c43a47 100644 --- a/search-service/src/test/kotlin/com/egm/stellio/search/support/WithTimescaleContainer.kt +++ b/search-service/src/test/kotlin/com/egm/stellio/search/support/WithTimescaleContainer.kt @@ -15,7 +15,7 @@ interface WithTimescaleContainer { private const val DB_PASSWORD = "stellio_search_db_password" private val timescaleImage: DockerImageName = - DockerImageName.parse("stellio/stellio-timescale-postgis:16-2.16.0-3.3") + DockerImageName.parse("stellio/stellio-timescale-postgis:16-2.17.2-3.5") .asCompatibleSubstituteFor("postgres") private val timescaleContainer = GenericContainer(timescaleImage).apply { diff --git a/subscription-service/docker-compose.yml b/subscription-service/docker-compose.yml index 0b0662e90..3e673e88e 100644 --- a/subscription-service/docker-compose.yml +++ b/subscription-service/docker-compose.yml @@ -22,7 +22,7 @@ services: - ../config/kafka/update_run.sh:/tmp/update_run.sh command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'" postgres: - image: stellio/stellio-timescale-postgis:16-2.16.0-3.3 + image: stellio/stellio-timescale-postgis:16-2.17.2-3.5 container_name: stellio-postgres environment: - POSTGRES_USER=${POSTGRES_USER} diff --git a/subscription-service/src/test/kotlin/com/egm/stellio/subscription/support/WithTimescaleContainer.kt b/subscription-service/src/test/kotlin/com/egm/stellio/subscription/support/WithTimescaleContainer.kt index 6449a54d4..171483149 100644 --- a/subscription-service/src/test/kotlin/com/egm/stellio/subscription/support/WithTimescaleContainer.kt +++ b/subscription-service/src/test/kotlin/com/egm/stellio/subscription/support/WithTimescaleContainer.kt @@ -15,7 +15,7 @@ interface WithTimescaleContainer { private const val DB_PASSWORD = "stellio_subscription_db_password" private val timescaleImage: DockerImageName = - DockerImageName.parse("stellio/stellio-timescale-postgis:16-2.16.0-3.3") + DockerImageName.parse("stellio/stellio-timescale-postgis:16-2.17.2-3.5") .asCompatibleSubstituteFor("postgres") private val timescaleContainer = GenericContainer(timescaleImage).apply {