Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
Prepare release 2.0.17.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewelinagr committed Aug 17, 2022
1 parent 300796e commit 976d1c3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit 976d1c3

Please sign in to comment.