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"