Skip to content

Commit

Permalink
Jira 8.18.2 and Service Management 4.18.2; fix tests with Docker curl
Browse files Browse the repository at this point in the history
  • Loading branch information
jhult committed Aug 25, 2021
1 parent b8ef0b5 commit dc78fca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ RUN export GLIBC_VERSION=2.29-r0 \
&& rm -rf /var/cache/apk/* /tmp/* /var/log/*

# Version
ARG JIRA_VERSION=8.18.1
ARG JIRA_VERSION=8.18.2

# Language
ARG LANG_LANGUAGE=en
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Run Jira Core, Jira Software, or Jira Service Desk in a Docker container.

| Product | Version | Tags |
|---------|---------|-------|
| [Jira Software](https://www.atlassian.com/software/jira) | 8.18.1 | latest, 8.18.1, latest.de, 8.18.1.de |
| [Jira Service Desk](https://www.atlassian.com/software/jira/service-desk) | 4.18.1 | servicedesk, servicedesk.4.18.1, servicedesk.de, servicedesk.4.18.1.de |
| [Jira Core](https://www.atlassian.com/software/jira/core) | 8.18.1 | core, core.8.18.1, core.de, core.8.18.1.de |
| [Jira Software](https://www.atlassian.com/software/jira) | 8.18.2 | latest, 8.18.2, latest.de, 8.18.2.de |
| [Jira Service Desk](https://www.atlassian.com/software/jira/service-desk) | 4.18.2 | servicedesk, servicedesk.4.18.2, servicedesk.de, servicedesk.4.18.2.de |
| [Jira Core](https://www.atlassian.com/software/jira/core) | 8.18.2 | core, core.8.18.2, core.de, core.8.18.2.de |
> On every release, the oldest and the newest tags are rebuild.
## You may also like
Expand Down
4 changes: 2 additions & 2 deletions buildscripts/latestVersions.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash

VERSION_JIRA="8.18.1"
VERSION_SERVICE_DESK="4.18.1"
VERSION_JIRA="8.18.2"
VERSION_SERVICE_DESK="4.18.2"
VERSION_DEVELOPMENT="development"
2 changes: 1 addition & 1 deletion buildscripts/testImage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ testImage() {

local response
set +e
response=$(docker run --rm --network $networkName byrnedo/alpine-curl -s -o /dev/null -I -w '%{http_code}' --retry-connrefuse --max-time 10 --retry 40 --retry-delay 20 --retry-max-time 600 http://"$containerName":"$port")
response=$(docker run --rm --network $networkName curlimages/curl curl -s -o /dev/null -I -w '%{http_code}' --retry-connrefuse --max-time 10 --retry 40 --retry-delay 20 --retry-max-time 600 http://"$containerName":"$port")
set -e
if [[ $response != 2* ]] && [[ $response != 3* ]]; then
exit 1
Expand Down

0 comments on commit dc78fca

Please sign in to comment.