├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── github_env.yaml └── workflows │ ├── PullRequestClosed.yml │ ├── PullRequestCreated.yml │ ├── RequestReview.yml │ ├── SubmitReview.yml │ ├── gcp-build-template.yml │ ├── go-test-template.yml │ ├── load-config.yml │ ├── multi-arch-build-template.yml │ ├── multi-arch-test-template.yml │ ├── push_and_pr.yml │ ├── release.yml │ ├── scripts │ ├── multi-arch-build.sh │ └── pull.sh │ ├── slack_notify.yml │ └── sonarqube-scan.yml ├── .gitignore ├── .tool-versions ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── commercial-editions ├── datacenter │ ├── app │ │ ├── Dockerfile │ │ ├── run.sh │ │ └── sonar.sh │ └── search │ │ ├── Dockerfile │ │ ├── run.sh │ │ └── sonar.sh ├── developer │ ├── Dockerfile │ └── entrypoint.sh └── enterprise │ ├── Dockerfile │ └── entrypoint.sh ├── community-build ├── Dockerfile └── entrypoint.sh ├── deprecated.md ├── develop.md ├── docker-official-images ├── README.md ├── active_versions.json ├── fixtures │ ├── active_versions.json │ └── docker-official-sonarqube ├── go.mod ├── internal │ ├── build │ │ ├── build.go │ │ └── build_test.go │ ├── config │ │ ├── config.go │ │ └── config_test.go │ └── fetcher │ │ ├── fetcher.go │ │ └── fetcher_test.go ├── main.go ├── main_test.go └── official_images.tmpl ├── example-compose-files ├── sq-dce-custom-zip-postgres │ ├── Dockerfile-app │ ├── Dockerfile-search │ ├── README.md │ ├── docker-compose.yml │ ├── nginx.conf │ ├── run-app.sh │ ├── run-search.sh │ └── unrestricted_client_body_size.conf ├── sq-dce-postgres │ ├── docker-compose.yml │ └── unrestricted_client_body_size.conf ├── sq-with-h2 │ └── docker-compose.yml └── sq-with-postgres │ └── docker-compose.yml ├── examples.md ├── release.md ├── renovate.json5 ├── run-public-image-tests.sh ├── run-tests.sh ├── sonar-project.properties ├── tests └── dce-compose-test │ └── docker-compose.yml └── update.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | .github/CODEOWNERS @SonarSource/platform-onprem-squad 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/github_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/github_env.yaml -------------------------------------------------------------------------------- /.github/workflows/PullRequestClosed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/PullRequestClosed.yml -------------------------------------------------------------------------------- /.github/workflows/PullRequestCreated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/PullRequestCreated.yml -------------------------------------------------------------------------------- /.github/workflows/RequestReview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/RequestReview.yml -------------------------------------------------------------------------------- /.github/workflows/SubmitReview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/SubmitReview.yml -------------------------------------------------------------------------------- /.github/workflows/gcp-build-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/gcp-build-template.yml -------------------------------------------------------------------------------- /.github/workflows/go-test-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/go-test-template.yml -------------------------------------------------------------------------------- /.github/workflows/load-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/load-config.yml -------------------------------------------------------------------------------- /.github/workflows/multi-arch-build-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/multi-arch-build-template.yml -------------------------------------------------------------------------------- /.github/workflows/multi-arch-test-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/multi-arch-test-template.yml -------------------------------------------------------------------------------- /.github/workflows/push_and_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/push_and_pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/multi-arch-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/scripts/multi-arch-build.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/scripts/pull.sh -------------------------------------------------------------------------------- /.github/workflows/slack_notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/slack_notify.yml -------------------------------------------------------------------------------- /.github/workflows/sonarqube-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.github/workflows/sonarqube-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | golang 1.24.4 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/SECURITY.md -------------------------------------------------------------------------------- /commercial-editions/datacenter/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/datacenter/app/Dockerfile -------------------------------------------------------------------------------- /commercial-editions/datacenter/app/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/datacenter/app/run.sh -------------------------------------------------------------------------------- /commercial-editions/datacenter/app/sonar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/datacenter/app/sonar.sh -------------------------------------------------------------------------------- /commercial-editions/datacenter/search/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/datacenter/search/Dockerfile -------------------------------------------------------------------------------- /commercial-editions/datacenter/search/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/datacenter/search/run.sh -------------------------------------------------------------------------------- /commercial-editions/datacenter/search/sonar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/datacenter/search/sonar.sh -------------------------------------------------------------------------------- /commercial-editions/developer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/developer/Dockerfile -------------------------------------------------------------------------------- /commercial-editions/developer/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/developer/entrypoint.sh -------------------------------------------------------------------------------- /commercial-editions/enterprise/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/enterprise/Dockerfile -------------------------------------------------------------------------------- /commercial-editions/enterprise/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/commercial-editions/enterprise/entrypoint.sh -------------------------------------------------------------------------------- /community-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/community-build/Dockerfile -------------------------------------------------------------------------------- /community-build/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/community-build/entrypoint.sh -------------------------------------------------------------------------------- /deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/deprecated.md -------------------------------------------------------------------------------- /develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/develop.md -------------------------------------------------------------------------------- /docker-official-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/README.md -------------------------------------------------------------------------------- /docker-official-images/active_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/active_versions.json -------------------------------------------------------------------------------- /docker-official-images/fixtures/active_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/fixtures/active_versions.json -------------------------------------------------------------------------------- /docker-official-images/fixtures/docker-official-sonarqube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/fixtures/docker-official-sonarqube -------------------------------------------------------------------------------- /docker-official-images/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/go.mod -------------------------------------------------------------------------------- /docker-official-images/internal/build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/internal/build/build.go -------------------------------------------------------------------------------- /docker-official-images/internal/build/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/internal/build/build_test.go -------------------------------------------------------------------------------- /docker-official-images/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/internal/config/config.go -------------------------------------------------------------------------------- /docker-official-images/internal/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/internal/config/config_test.go -------------------------------------------------------------------------------- /docker-official-images/internal/fetcher/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/internal/fetcher/fetcher.go -------------------------------------------------------------------------------- /docker-official-images/internal/fetcher/fetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/internal/fetcher/fetcher_test.go -------------------------------------------------------------------------------- /docker-official-images/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/main.go -------------------------------------------------------------------------------- /docker-official-images/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/main_test.go -------------------------------------------------------------------------------- /docker-official-images/official_images.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/docker-official-images/official_images.tmpl -------------------------------------------------------------------------------- /example-compose-files/sq-dce-custom-zip-postgres/Dockerfile-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-dce-custom-zip-postgres/Dockerfile-app -------------------------------------------------------------------------------- /example-compose-files/sq-dce-custom-zip-postgres/Dockerfile-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-dce-custom-zip-postgres/Dockerfile-search -------------------------------------------------------------------------------- /example-compose-files/sq-dce-custom-zip-postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-dce-custom-zip-postgres/README.md -------------------------------------------------------------------------------- /example-compose-files/sq-dce-custom-zip-postgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-dce-custom-zip-postgres/docker-compose.yml -------------------------------------------------------------------------------- /example-compose-files/sq-dce-custom-zip-postgres/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-dce-custom-zip-postgres/nginx.conf -------------------------------------------------------------------------------- /example-compose-files/sq-dce-custom-zip-postgres/run-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-dce-custom-zip-postgres/run-app.sh -------------------------------------------------------------------------------- /example-compose-files/sq-dce-custom-zip-postgres/run-search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-dce-custom-zip-postgres/run-search.sh -------------------------------------------------------------------------------- /example-compose-files/sq-dce-custom-zip-postgres/unrestricted_client_body_size.conf: -------------------------------------------------------------------------------- 1 | client_max_body_size 0; 2 | -------------------------------------------------------------------------------- /example-compose-files/sq-dce-postgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-dce-postgres/docker-compose.yml -------------------------------------------------------------------------------- /example-compose-files/sq-dce-postgres/unrestricted_client_body_size.conf: -------------------------------------------------------------------------------- 1 | client_max_body_size 0; 2 | -------------------------------------------------------------------------------- /example-compose-files/sq-with-h2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-with-h2/docker-compose.yml -------------------------------------------------------------------------------- /example-compose-files/sq-with-postgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/example-compose-files/sq-with-postgres/docker-compose.yml -------------------------------------------------------------------------------- /examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/examples.md -------------------------------------------------------------------------------- /release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/release.md -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/renovate.json5 -------------------------------------------------------------------------------- /run-public-image-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/run-public-image-tests.sh -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/run-tests.sh -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tests/dce-compose-test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/tests/dce-compose-test/docker-compose.yml -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/docker-sonarqube/HEAD/update.sh --------------------------------------------------------------------------------