From 331acf9c52cdab5af93e8f43209e3cb91521e984 Mon Sep 17 00:00:00 2001 From: Davi Koscianski Vidal Date: Tue, 3 Dec 2024 08:39:47 +0100 Subject: [PATCH] Removes README from PR --- sonarqube/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sonarqube/README.md b/sonarqube/README.md index 610524246bc8..1dbb19253e34 100644 --- a/sonarqube/README.md +++ b/sonarqube/README.md @@ -50,7 +50,7 @@ WARNING: [https://github.com/SonarSource/docker-sonarqube/issues](https://github.com/SonarSource/docker-sonarqube/issues?q=) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - `amd64`, `arm64v8` + [`amd64`](https://hub.docker.com/r/amd64/sonarqube/), [`arm64v8`](https://hub.docker.com/r/arm64v8/sonarqube/) - **Published image artifact details**: [repo-info repo's `repos/sonarqube/` directory](https://github.com/docker-library/repo-info/blob/master/repos/sonarqube) ([history](https://github.com/docker-library/repo-info/commits/master/repos/sonarqube)) @@ -69,9 +69,9 @@ WARNING: ![logo](https://raw.githubusercontent.com/docker-library/docs/84479f149eb7d748d5dc057665eb96f923e60dc1/sonarqube/logo.png) -## How to use this image +# How to use this image -Here you'll find the Docker images for the Developer Edition, Enterprise Edition, and Data Center Edition of SonarQube Server, as well as for SonarQube Community Build (Formerly SonarQube Community). +Here you'll find the Docker images for the Community Edition, Developer Edition, Enterprise Edition, and Data Center Edition of SonarQube. ## Docker Host Requirements @@ -107,7 +107,7 @@ To run a cluster with the Data Center Edition, please refer to Installing SonarQ By default, the server running within the container will listen on port 9000. You can expose the container port 9000 to the host port 9000 with the `-p 9000:9000` argument to `docker run`, like the command below: ```console -docker run --name sonarqube-custom -p 9000:9000 sonarqube:community +docker run --name sonarqube-custom -p 9000:9000 sonarqube:10.6-community ``` You can then browse to `http://localhost:9000` or `http://host-ip:9000` in your web browser to access the SonarQube web interface. @@ -141,7 +141,7 @@ For upgrade instructions, see Upgrading from the Docker Image on the [Upgrade th In some environments, it may make more sense to prepare a custom image containing your configuration. A `Dockerfile` to achieve this may be as simple as: ```dockerfile -FROM sonarqube:community +FROM sonarqube:10.6-community COPY sonar-custom-plugin-1.0.jar /opt/sonarqube/extensions/ ``` @@ -166,7 +166,7 @@ The administration guide can be found [here](https://redirect.sonarsource.com/do # License -SonarQube Community Build is licensed under [GNU Lesser General Public License, Version 3.0](http://www.gnu.org/licenses/lgpl.txt). SonarQube Developer, Enterprise, and Data Center Editions are licensed under [SonarSource Terms and Conditions](https://www.sonarsource.com/docs/sonarsource_terms_and_conditions.pdf). +SonarQube Community Edition is licensed under [GNU Lesser General Public License, Version 3.0](http://www.gnu.org/licenses/lgpl.txt). SonarQube Developer, Enterprise, and Data Center Editions are licensed under [SonarSource Terms and Conditions](https://www.sonarsource.com/docs/sonarsource_terms_and_conditions.pdf). As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).