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

Patch Architecture #176

Merged
merged 3 commits into from
May 25, 2024
Merged
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
9 changes: 5 additions & 4 deletions viewOnTethys.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ RESET='\e[0m'

# run the geoserver docker container
_run_geoserver(){
_execute_command_geoserver docker run -it --rm -d -p $GEOSERVER_PORT_HOST:$GEOSERVER_PORT_CONTAINER \
_execute_command_geoserver docker run -it --rm -d \
--platform $PLATFORM \
-p $GEOSERVER_PORT_HOST:$GEOSERVER_PORT_CONTAINER \
--env CORS_ENABLED=true \
--env SKIP_DEMO_DATA=true \
--network $DOCKER_NETWORK \
Expand Down Expand Up @@ -544,8 +546,8 @@ GEOSERVER_PORT_CONTAINER="8080"
GEOSERVER_PORT_HOST="8181"
DOCKER_NETWORK="tethys-network"
APP_WORKSPACE_PATH="/usr/lib/tethys/apps/ngiab/tethysapp/ngiab/workspaces/app_workspace"
TETHYS_IMAGE_NAME=awiciroh/tethys-ngiab:main
GEOSERVER_IMAGE_NAME=docker.osgeo.org/geoserver:2.25.x
TETHYS_IMAGE_NAME=awiciroh/tethys-ngiab:dev-r1
GEOSERVER_IMAGE_NAME=gioelkin/geoserver:2.25.x
DATA_FOLDER_PATH="$1"
TETHYS_PERSIST_PATH="/var/lib/tethys_persist"
CONFIG_FILE="$HOME/.host_data_path.conf"
Expand All @@ -560,6 +562,5 @@ fi

check_last_path "$@"


create_tethys_portal

Loading