diff --git a/README.md b/README.md index 7f4d2f4bf..2ad2232e9 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ gradle assemble gradle publish ``` -The latest release is [glowing-bear-2.0.16.tar](https://repo.thehyve.nl/service/local/repositories/releases/content/nl/thehyve/glowing-bear/2.0.16/glowing-bear-2.0.16.tar). +The latest release is [glowing-bear-2.0.17.tar](https://repo.thehyve.nl/service/local/repositories/releases/content/nl/thehyve/glowing-bear/2.0.17/glowing-bear-2.0.17.tar). Published snapshot bundles are available in the `snapshots` repository on https://repo.thehyve.nl with id `nl.thehyve:glowing-bear:0.0.1-SNAPSNOT:tar`. diff --git a/docker/Dockerfile b/docker/Dockerfile index f3e75eb98..00d83f13b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM nginx:alpine -ARG GB_VERSION="2.0.16" +ARG GB_VERSION="2.0.17" ARG GB_SRC_REPOSITORY="releases" ENV GB_SRC_URL https://repo.thehyve.nl/service/local/artifact/maven/redirect?r=${GB_SRC_REPOSITORY}&g=nl.thehyve&a=glowing-bear&v=${GB_VERSION}&p=tar diff --git a/docs/installation.md b/docs/installation.md index b8d0658b9..1d69d7b57 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -504,21 +504,21 @@ Glowing Bear requires: 1. Download the application and extract the contents in the `/var/www/glowingbear` directory: ```shell - GLOWING_BEAR_VERSION=2.0.16 + GLOWING_BEAR_VERSION=2.0.17 curl -f -L -o "glowing-bear-${GLOWING_BEAR_VERSION}.tar" \ "https://repo.thehyve.nl/service/local/repositories/releases/content/nl/thehyve/glowing-bear/${GLOWING_BEAR_VERSION}/glowing-bear-${GLOWING_BEAR_VERSION}.tar" sudo mkdir -p /var/www/glowingbear sudo tar xf glowing-bear-${GLOWING_BEAR_VERSION}.tar -C /var/www/glowingbear ``` -2. Override environment file `/var/www/glowingbear/glowing-bear-2.0.16/app/config/env.json` with the following: +2. Override environment file `/var/www/glowingbear/glowing-bear-2.0.17/app/config/env.json` with the following: ```json { "env": "default" } ``` -3. Edit configuration file `/var/www/glowingbear/glowing-bear-2.0.16/app/config/config.default.json` (overwrites the default config file in the `tar`): +3. Edit configuration file `/var/www/glowingbear/glowing-bear-2.0.17/app/config/config.default.json` (overwrites the default config file in the `tar`): ```json { "oidc-server-url": "CHANGE ME", @@ -559,7 +559,7 @@ Glowing Bear requires: error_log /var/log/nginx/glowingbear.example.com:443.error.log; location / { - root /var/www/glowingbear/glowing-bear-2.0.16; + root /var/www/glowingbear/glowing-bear-2.0.17; index index.html index.htm; try_files $uri $uri/ /index.html =404; }