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

Version bump to 10.0.2 #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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} .
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ You will need docker and make installed on your machine.
make build-image VERSION=<the-version-that-you-want>
```

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.
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
context: .
dockerfile: Dockerfile
args:
version: 10.0.0
version: 10.0.2
restart: unless-stopped
environment:
GDB_JAVA_OPTS: >-
Expand Down
2 changes: 1 addition & 1 deletion preload/.env
Original file line number Diff line number Diff line change
@@ -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
Expand Down