From 8123dbd4667abd6191a87efcf0b5f595cdeaa69e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Kleinb=C3=B6lting?= Date: Fri, 29 Sep 2023 14:17:48 +0200 Subject: [PATCH] chore: Update dependencies fuseki and app (#2856) --- docker-compose.yml | 4 ++-- project/Dependencies.scala | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 532400c80b..1f2daeff5f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,14 +3,14 @@ version: '3.7' services: app: - image: daschswiss/dsp-app:v10.23.3 + image: daschswiss/dsp-app:v10.23.5 ports: - "4200:4200" networks: - knora-net db: - image: daschswiss/apache-jena-fuseki:2.1.0 # should be the same version as in Dependencies.scala, also make sure to use the same version when deploying it (i.e. version in ops-deploy)! + image: daschswiss/apache-jena-fuseki:2.1.1 # should be the same version as in Dependencies.scala, also make sure to use the same version when deploying it (i.e. version in ops-deploy)! ports: - "3030:3030" volumes: diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 11f7b2168d..80e8d76a40 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -10,7 +10,7 @@ import sbt.* object Dependencies { val fusekiImage = - "daschswiss/apache-jena-fuseki:2.1.0" // should be the same version as in docker-compose.yml, also make sure to use the same version when deploying it (i.e. version in ops-deploy)! + "daschswiss/apache-jena-fuseki:2.1.1" // should be the same version as in docker-compose.yml, also make sure to use the same version when deploying it (i.e. version in ops-deploy)! val sipiImage = "daschswiss/sipi:3.8.1" // base image the knora-sipi image is created from val ScalaVersion = "2.13.11"