-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
18 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
FROM registry.cloudogu.com/official/java:8u191-1 | ||
FROM registry.cloudogu.com/official/java:8u212-1 | ||
|
||
LABEL NAME="official/sonar" \ | ||
VERSION="6.7.6-3" \ | ||
VERSION="6.7.7-1" \ | ||
maintainer="[email protected]" | ||
|
||
ENV SONAR_VERSION=6.7.6 \ | ||
ENV SONAR_VERSION=6.7.7 \ | ||
SONARQUBE_HOME=/opt/sonar \ | ||
# mark as webapp for nginx | ||
SERVICE_TAGS=webapp \ | ||
CAS_PLUGIN_VERSION=1.0.5 | ||
|
||
RUN set -x \ | ||
&& apk add --no-cache procps postgresql-client \ | ||
&& mkdir /opt \ | ||
&& mkdir -p /opt \ | ||
&& cd /tmp \ | ||
&& rm -rf /var/cache/apk/* \ | ||
# get SonarQube | ||
|
@@ -34,4 +34,6 @@ EXPOSE 9000 | |
|
||
USER sonar | ||
|
||
HEALTHCHECK CMD [ $(curl --silent --fail -u sonarqubedoguadmin:$(doguctl config -e dogu_admin_password) http://localhost:9000/sonar/api/system/health | jq -r '.health') = "GREEN" ] && [ $(doguctl state) == "ready" ] && [ $(doguctl healthy sonar; EXIT_CODE=$?; echo ${EXIT_CODE}) == 0 ] | ||
|
||
CMD ["/startup.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ package: | |
procps: | ||
installed: true | ||
versions: | ||
- 3.3.12-r3 | ||
- 3.3.15-r0 | ||
user: | ||
sonar: | ||
exists: true | ||
|