Skip to content

Commit

Permalink
Dev 4.2.1 (#30)
Browse files Browse the repository at this point in the history
* fix: removed unused variable from dockerfile

* fix: issue #28
  • Loading branch information
ecow authored May 14, 2024
1 parent 7808131 commit c628a4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ To push a new docker image to docker hub:
# docker login
# docker buildx create --name multi-arch-builder
NAME="linkeddatacenter/sdaas-ce" MAJOR="4" MINOR="2" PATCH="0"
NAME="linkeddatacenter/sdaas-ce" MAJOR="4" MINOR="2" PATCH="1"
docker buildx build --builder multi-arch-builder --platform linux/arm64,linux/amd64 --build-arg MODE=prod --push -t $NAME:$MAJOR.$MINOR.$PATCH .
```

Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.3"

services:

kb:
Expand Down
4 changes: 2 additions & 2 deletions modules/core
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ STORE_TYPE=${STORE_TYPE:-w3c}

SD_LOG_PRIORITY=${SD_LOG_PRIORITY:-5}
SD_ABORT_ON_FAIL=${SD_ABORT_ON_FAIL:-false}
SD_DEFAULT_CONTEXT=${SD_DEFAULT_CONTEXT:-"sid=STORE activity=Activity"}
SD_DEFAULT_CONTEXT=${SD_DEFAULT_CONTEXT:-"sid=STORE"}

# WARNING: changing this variable breaks the license agreement
SDAAS_SIGNATURE=${SDAAS_SIGNATURE:-"SDaaS $SDAAS_APPLICATION_ID $SDAAS_VERSION"}
Expand Down Expand Up @@ -135,7 +135,7 @@ sd_include() {
fi

# test if the module was already included
if eval "[ ! -z \${__module_${module}+x} ]" ; then return ; fi
if eval "[ ! -z \${__module_${module}+x} ]" ; then return 0 ; fi

if [[ -e "$HOME/modules/$module" ]]; then
# try local defined module (override default installation)
Expand Down

0 comments on commit c628a4f

Please sign in to comment.