Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: check that the expected Fuseki version is present (DEV-331) #2057

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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