Skip to content

Commit

Permalink
chore: check that the expected Fuseki version is present (DEV-331) (#…
Browse files Browse the repository at this point in the history
…2057)

Co-authored-by: Ivan Subotic <400790+subotic@users.noreply.github.com>
  • Loading branch information
irinaschubert and subotic committed May 6, 2022
1 parent 7d75351 commit 2a695ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Expand Up @@ -3,7 +3,7 @@ version: '3.7'
services:

db:
image: daschswiss/apache-jena-fuseki:2.0.8 # should be the same version as in Dependencies.scala
image: daschswiss/apache-jena-fuseki:2.0.8 # 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:
Expand Down
5 changes: 3 additions & 2 deletions project/Dependencies.scala
Expand Up @@ -10,8 +10,9 @@ import sbt.{Def, _}

object Dependencies {

val fusekiImage = "daschswiss/apache-jena-fuseki:2.0.8" // should be the same version as in docker-compose.yml
val sipiImage = "daschswiss/sipi:3.5.0" // base image the knora-sipi image is created from
val fusekiImage =
"daschswiss/apache-jena-fuseki:2.0.8" // 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.5.0" // base image the knora-sipi image is created from

// versions
val akkaHttpVersion = "10.2.9"
Expand Down

0 comments on commit 2a695ec

Please sign in to comment.