Skip to content

Commit

Permalink
Merge pull request #120 from gisaia/feature/23.0.0
Browse files Browse the repository at this point in the history
Upgrade stack to v23.0.0
  • Loading branch information
MohamedHamouGisaia authored Jul 19, 2022
2 parents e7a23ef + e9005bc commit bef27b4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ This project contains :

# Docker-compose file
This docker-compose contains 6 services :
- [arlas-wui](https://github.com/gisaia/ARLAS-wui) version >= 22.0.1
- [arlas-hub](https://github.com/gisaia/ARLAS-wui-hub) version >= 22.0.1
- [arlas-builder](https://github.com/gisaia/ARLAS-wui-builder) version >= 22.0.1
- [arlas-persistence-server](https://github.com/gisaia/ARLAS-persistence) version >= 22.0.1
- [arlas-permissions-server](https://github.com/gisaia/ARLAS-permissions) version >= 22.0.1
- [arlas-wui](https://github.com/gisaia/ARLAS-wui) version >= 23.0.0
- [arlas-hub](https://github.com/gisaia/ARLAS-wui-hub) version >= 23.0.0
- [arlas-builder](https://github.com/gisaia/ARLAS-wui-builder) version >= 23.0.0
- [arlas-persistence-server](https://github.com/gisaia/ARLAS-persistence) version >= 23.0.0
- [arlas-permissions-server](https://github.com/gisaia/ARLAS-permissions) version >= 23.0.0
- [elasticsearch](https://github.com/elastic/elasticsearch) version >= 7.9.2
- [arlas-server](https://github.com/gisaia/ARLAS-server) version >= 22.0.1
- [arlas-server](https://github.com/gisaia/ARLAS-server) version >= 23.0.0

# Start.sh script
This script executes the docker-compose according to parameters.
Expand Down Expand Up @@ -37,15 +37,15 @@ THE ARLAS STACK IS READY
############################################
############################################
ARLAS WUI in version 22.0.1 is running on http://localhost:81/wui
ARLAS HUB in version 22.0.1 is running on http://localhost:81/hub
ARLAS BUILDER in version 22.0.1 is running on http://localhost:81/builder
ARLAS WUI in version 23.0.0 is running on http://localhost:81/wui
ARLAS HUB in version 23.0.0 is running on http://localhost:81/hub
ARLAS BUILDER in version 23.0.0 is running on http://localhost:81/builder
############################################
############################################
ARLAS PERSISTENCE SERVER in version 22.0.1 is running on http://localhost:81/persist/
ARLAS PERMISSIONS SERVER in version 22.0.1 is running on http://localhost:81/permissions/
ARLAS SERVER in version 22.0.1 is running on http://localhost:81/server/
ARLAS PERSISTENCE SERVER in version 23.0.0 is running on http://localhost:81/persist/
ARLAS PERMISSIONS SERVER in version 23.0.0 is running on http://localhost:81/permissions/
ARLAS SERVER in version 23.0.0 is running on http://localhost:81/server/
############################################
############################################
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
arlas-wui:
image: gisaia/arlas-wui:${ARLAS_WUI_VERSION:-22.0.1}
image: gisaia/arlas-wui:${ARLAS_WUI_VERSION:-23.0.0}
container_name: arlas-wui
environment:
- ARLAS_USE_AUTHENT=false
Expand All @@ -16,7 +16,7 @@ services:
networks:
- esnet
arlas-hub:
image: gisaia/arlas-wui-hub:${ARLAS_HUB_VERSION:-22.0.1}
image: gisaia/arlas-wui-hub:${ARLAS_HUB_VERSION:-23.0.0}
container_name: arlas-hub
environment:
- ARLAS_USE_AUTHENT=false
Expand All @@ -34,7 +34,7 @@ services:
networks:
- esnet
arlas-builder:
image: gisaia/arlas-wui-builder:${ARLAS_BUILDER_VERSION:-22.0.1}
image: gisaia/arlas-wui-builder:${ARLAS_BUILDER_VERSION:-23.0.0}
container_name: arlas-builder
environment:
- ARLAS_BUILDER_BASE_HREF=/builder
Expand Down Expand Up @@ -67,7 +67,7 @@ services:
networks:
- esnet
arlas-persistence-server:
image: gisaia/arlas-persistence-server:${ARLAS_PERSISTENCE_VERSION:-22.0.1}
image: gisaia/arlas-persistence-server:${ARLAS_PERSISTENCE_VERSION:-23.0.0}
container_name: arlas-persistence-server
environment:
- ARLAS_PERSISTENCE_PORT=9997
Expand Down Expand Up @@ -107,7 +107,7 @@ services:
networks:
- esnet
arlas-server:
image: gisaia/arlas-server:${ARLAS_SERVER_VERSION:-22.0.1}
image: gisaia/arlas-server:${ARLAS_SERVER_VERSION:-23.0.0}
container_name: arlas-server
environment:
- ARLAS_ELASTIC_CLUSTER=${ES_CLUSTER:-docker-cluster}
Expand All @@ -131,7 +131,7 @@ services:
networks:
- esnet
arlas-permissions-server:
image: gisaia/arlas-permissions-server:${ARLAS_PERMISSIONS_VERSION:-22.0.1}
image: gisaia/arlas-permissions-server:${ARLAS_PERMISSIONS_VERSION:-23.0.0}
container_name: arlas-permissions-server
environment:
- ARLAS_PERMISSIONS_PORT=9996
Expand Down
12 changes: 6 additions & 6 deletions env.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash

export ARLAS_WUI_VERSION=22.0.1
export ARLAS_HUB_VERSION=22.0.1
export ARLAS_BUILDER_VERSION=22.0.1
export ARLAS_PERSISTENCE_VERSION=22.0.1
export ARLAS_PERMISSIONS_VERSION=22.0.1
export ARLAS_SERVER_VERSION=22.0.1
export ARLAS_WUI_VERSION=23.0.0
export ARLAS_HUB_VERSION=23.0.0
export ARLAS_BUILDER_VERSION=23.0.0
export ARLAS_PERSISTENCE_VERSION=23.0.0
export ARLAS_PERMISSIONS_VERSION=23.0.0
export ARLAS_SERVER_VERSION=23.0.0
export LOCAL_HOST=localhost
export ARLAS_PERSISTENCE_LOCAL_FOLDER_HOST=$HOME/.arlas/persist

0 comments on commit bef27b4

Please sign in to comment.