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: upgrade Apache Jena Fuseki docker image to v2.0.11 (DEV-1299) #2362

Merged
merged 2 commits into from Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -10,7 +10,7 @@ services:
- knora-net

db:
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)!
image: daschswiss/apache-jena-fuseki:2.0.11 # 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
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Expand Up @@ -10,7 +10,7 @@ import sbt._
object Dependencies {

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)!
"daschswiss/apache-jena-fuseki:2.0.11" // 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

val ScalaVersion = "2.13.8"
Expand Down