
library/sonarqubeMaintained by:
SonarSource
Where to get help:
the SonarSource Community forum, the Docker Community Forums, the Docker Community Slack, or Stack Overflow
Dockerfile links2025.6.1-developer, 2025.6-developer, developer
2025.6.1-enterprise, 2025.6-enterprise, enterprise
2025.6.1-datacenter-app, 2025.6-datacenter-app, datacenter-app
2025.6.1-datacenter-search, 2025.6-datacenter-search, datacenter-search
2025.4.4-developer, 2025.4-developer, 2025.4-lta-developer
2025.4.4-enterprise, 2025.4-enterprise, 2025.4-lta-enterprise
2025.4.4-datacenter-app, 2025.4-datacenter-app, 2025.4-lta-datacenter-app
2025.4.4-datacenter-search, 2025.4-datacenter-search, 2025.4-lta-datacenter-search
2025.1.5-developer, 2025.1-developer, 2025-lta-developer
2025.1.5-enterprise, 2025.1-enterprise, 2025-lta-enterprise
2025.1.5-datacenter-app, 2025.1-datacenter-app, 2025-lta-datacenter-app
2025.1.5-datacenter-search, 2025.1-datacenter-search, 2025-lta-datacenter-search
26.1.0.***-community, community, latest
Where to file issues:
[***]
Supported architectures: (more info)
amd64, arm64v8
Published image artifact details:
repo-info repo's repos/sonarqube/ directory (history)
(image metadata, transfer size, etc)
Image updates:
official-images repo's library/sonarqube label
official-images repo's library/sonarqube file (history)
Source of this description:
docs repo's sonarqube/ directory (history)
sonarqube?sonarqube Docker repository stores the official Sonar images for SonarQube Server and SonarQube Community Build.
SonarQube Server (formerly SonarQube) is an on-premise analysis tool designed to detect quality and security issues in 30+ languages, frameworks, and IaC platforms. The solution also provides fix recommendations leveraging AI with Sonar's AI CodeFix capability. By integrating directly with your CI pipeline or on one of the supported DevOps platforms, your code is checked against an extensive set of rules that cover many attributes of code, such as maintainability, reliability, and security issues on each merge/pull request.
SonarQube Community Build (formerly SonarQube Community) is Sonar's self-managed free offering, released on a monthly schedule. It includes the latest core capabilities available in open source, providing essential features such as bug detection, identification of code smells, and basic security issue analysis across 21 programming languages and frameworks. For advanced security analysis, enterprise-grade integrations, and scalability features, the commercial version, SonarQube Server, is available.
Here, you'll find the Docker images for the SonarQube Server (Developer Edition, Enterprise Edition, and Data Center Edition), as well as for SonarQube Community Build.
Because SonarQube uses an embedded Elasticsearch, make sure that your Docker host configuration complies with the Elasticsearch production mode requirements and File Descriptors configuration.
For example, on Linux, you can set the recommended values for the current session by running the following commands as root on the host:
consolesysctl -w vm.max_map_count=524288 sysctl -w fs.file-max=*** ulimit -n *** ulimit -u 8192
To quickly run a demo instance, see Using Docker on the Try Out SonarQube page. When you are ready to move to a more sustainable setup, take some time to read the Installation and Configuration sections below.
Multi-platform support: Starting from SonarQube
9.9, the docker images support running both onamd64architecture andarm64-based Apple Silicon (M1).
For installation instructions, see Installing the Server from the Docker Image on the Install the Server page.
To run a cluster with the SonarQube Server Data Center Edition, please refer to Installing SonarQube Server from the Docker Image on the Install the Server as a Cluster page.
LTA refers to the version of SonarQube Server that will stay active for a longer period of time. Currently, 2025.4 is the latest LTA version and should be used when LTA version is preferred. To install the latest LTA, you can pull one of the 2025.4-lta-<edition> tags.
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:
consoledocker run --name sonarqube-custom -p 9000:9000 sonarqube:community
You can then browse to http://localhost:9000 or [***] in your web browser to access the web interface.
By default, the image will use an embedded H2 database that is not suited for production.
Warning: Only a single instance of SonarQube Server or SonarQube Community Build can connect to a database schema. If you're using a Docker Swarm or Kubernetes, make sure that multiple instances are never running on the same database schema simultaneously. This will cause the SonarQube to behave unpredictably, and data will be corrupted. There is no safeguard, as described on SONAR-***. The SonarQube Server Data Center Edition has the same limitation in that only one cluster can connect to one database schema at the same time.
Set up a database by following the "Installing the Database" section.
We recommend creating volumes for the following directories:
/opt/sonarqube/data: data files, such as the embedded H2 database and Elasticsearch indexes/opt/sonarqube/logs: contains SonarQube logs about access, web process, CE process, Elasticsearch logs/opt/sonarqube/extensions: for 3rd party pluginsWarning: You cannot use the same volumes on multiple instances of SonarQube.
For upgrade instructions, see Upgrading from the Docker Image on the Upgrade the Server page.
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:
dockerfileFROM sonarqube:community COPY sonar-custom-plugin-1.0.jar /opt/sonarqube/extensions/
You could then build and try the image with something like:
console$ docker build --tag=sonarqube-custom . $ docker run -ti sonarqube-custom
The instance will stop gracefully, waiting for any tasks in progress to finish. Waiting for in-progress tasks to finish can take a large amount of time, which the docker does not expect by default when stopping. To avoid having the instance killed by the Docker daemon after 10 seconds, it is best to configure a timeout to stop the container with --stop-timeout. For example:
consoledocker run --stop-timeout 3600 sonarqube
Information about administering your instance of SonarQube Server begins here.
SonarQube Community Build is licensed under GNU Lesser General Public License, Version 3.0. SonarQube Server Developer, Enterprise, and Data Center Editions are licensed under SonarSource Terms and Condition.
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).
Some additional license information which was able to be auto-detected might be found in the repo-info repository's sonarqube/ directory.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像服务
在 Docker Desktop 配置镜像
Docker Compose 项目配置
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
在宝塔面板一键配置镜像
Synology 群晖 NAS 配置
飞牛 fnOS 系统配置镜像
极空间 NAS 系统配置服务
爱快 iKuai 路由系统配置
绿联 NAS 系统配置镜像
QNAP 威联通 NAS 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
来自真实用户的反馈,见证轩辕镜像的优质服务