Skip to content

Commit

Permalink
chore: upgrade to Timescale 2.17.2 (#1301)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobeal authored Jan 4, 2025
1 parent 424d54d commit e535bee
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion search-service/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<Nothing>(timescaleImage).apply {
Expand Down
2 changes: 1 addition & 1 deletion subscription-service/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<Nothing>(timescaleImage).apply {
Expand Down

0 comments on commit e535bee

Please sign in to comment.