From 4be1c7d88f473f5ddcf6f14aae1fdd74397b1a91 Mon Sep 17 00:00:00 2001 From: Nils Herde Date: Wed, 19 Oct 2022 14:57:57 +0200 Subject: [PATCH] Version bump to 10.0.2 --- Dockerfile | 2 +- Makefile | 2 +- README.md | 10 +++++----- docker-compose.yml | 2 +- preload/.env | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0962451..05da74f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM eclipse-temurin:11-jdk-alpine # Build time arguments -ARG version=10.0.0 +ARG version=10.0.2 ENV GRAPHDB_PARENT_DIR=/opt/graphdb ENV GRAPHDB_HOME=${GRAPHDB_PARENT_DIR}/home diff --git a/Makefile b/Makefile index 7ba48c7..bd83c2e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=10.0.0 +VERSION=10.0.2 build-image: docker build --no-cache --pull --build-arg version=${VERSION} -t ontotext/graphdb:${VERSION} . diff --git a/README.md b/README.md index 2446ae5..ef8a6a1 100644 --- a/README.md +++ b/README.md @@ -12,16 +12,16 @@ You will need docker and make installed on your machine. make build-image VERSION= ``` -for example the most recent version as of this writing is 10.0.0 so run +for example the most recent version as of this writing is 10.0.2 so run ```bash -make build-image VERSION=10.0.0 +make build-image VERSION=10.0.2 ``` -this will build an image that you can use called ontotext/graphdb:10.0.0 +this will build an image that you can use called ontotext/graphdb:10.0.2 You can run the image now with ```bash -docker run -d -p 7200:7200 ontotext/graphdb:10.0.0 +docker run -d -p 7200:7200 ontotext/graphdb:10.0.2 ``` Consult the docker hub documentation for more information. @@ -44,7 +44,7 @@ By default it will: When running the preload docker-compose various parameters can be provided in the `preload/.env` file: ```bash -GRAPHDB_VERSION=10.0.0 +GRAPHDB_VERSION=10.0.2 GRAPHDB_HEAP_SIZE=2g GRAPHDB_HOME=../graphdb-data REPOSITORY_CONFIG_FILE=./graphdb-repo.ttl diff --git a/docker-compose.yml b/docker-compose.yml index b1db8f2..97745c3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,7 +7,7 @@ services: context: . dockerfile: Dockerfile args: - version: 10.0.0 + version: 10.0.2 restart: unless-stopped environment: GDB_JAVA_OPTS: >- diff --git a/preload/.env b/preload/.env index e716d3a..c3cd3fc 100644 --- a/preload/.env +++ b/preload/.env @@ -1,4 +1,4 @@ -GRAPHDB_VERSION=10.0.0 +GRAPHDB_VERSION=10.0.2 GRAPHDB_HEAP_SIZE=2g GRAPHDB_HOME=../graphdb-data REPOSITORY_CONFIG_FILE=./graphdb-repo.ttl