Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
Automated: Bump Docker images (#548)
Browse files Browse the repository at this point in the history
* Automated: Bump Docker images

* Add zlib.net to excluded urls to check
  • Loading branch information
qlikossbuild authored and wennmo committed Nov 19, 2019
1 parent 7c362f7 commit 3b9126a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/check-external-links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ URLS=$(grep -Eroih '=\"(http|https)://[^ "]+' --include '*.html' --include '*.cs
# echo "Following URLS found: $URLS"

for url in $URLS
do
if [[ $url == *"localhost"* || $url == *"gstatic"* || $url == *"google-analytics"* || $url == *"googletagmanager"* ]]; then
do
if [[ $url == *"localhost"* || $url == *"gstatic"* || $url == *"google-analytics"* || $url == *"googletagmanager"* || $url == *"zlib.net"* ]]; then
echo "# Skipping: $url"
elif curl -s -L -f -I -k -o /dev/null "$url"; then
echo " Working: $url"
else
echo "! Broken: $url"
STATUS=1
fi
fi
done

if [ "$STATUS" -eq "1" ]; then
Expand Down
2 changes: 1 addition & 1 deletion docs/services/qix-engine/apis/file-loading/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ An example on how it can be configured in a `docker-compose` file:

```yaml
qix-engine:
image: qlikcore/engine:12.477.0
image: qlikcore/engine:12.515.0
ports:
- 9076:9076
command: -S AcceptEULA=${ACCEPT_EULA} -S EnableGrpcFileStreamConnector=1 -S GrpcConnectorPlugins="s3-grpc-file-connector,s3-grpc-file-connector:50051,fs"
Expand Down

0 comments on commit 3b9126a

Please sign in to comment.