Overview
- Full name
docker.io/sourcegraph/server- Registry
- docker.io
- Namespace
- sourcegraph
- Repository
- server
- Cached tags
- 13242
- Last synced
- 07/06/2026, 08:07 AM
Introduction
Sourcegraph 代码搜索与智能导航单体镜像,索引 Git 仓库并提供跨库跳转,适合大型工程团队私有化代码平台。
Details
sourcegraph/server 运行 Sourcegraph 全栈,含 gitserver、searcher 与 web UI。定位为代码搜索 Web 平台,需 PostgreSQL、Redis 与大容量 PVC;K8s 建议 Helm chart,简化 Deployment 仅 PoC。
快速启动
docker run -d --name sourcegraph \
-p 7080:7080 \
-v /data/sourcegraph:/var/opt/sourcegraph \
docker.io/sourcegraph/server:latest
推荐实践
docker run -d --name sourcegraph \
--restart unless-stopped \
-p 7080:7080 \
-v /data/sourcegraph:/var/opt/sourcegraph \
-e PGHOST=postgres.internal \
docker.io/sourcegraph/server:5.3.0
核心参数说明
-p 7080:7080— Sourcegraph Web 端口-v .../sourcegraph:...— 索引与配置持久化-e PGHOST— 外部 PostgreSQL- 固定 tag — Sourcegraph 大版本 pin
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: sourcegraph
spec:
replicas: 1
selector:
matchLabels:
app: sourcegraph
template:
metadata:
labels:
app: sourcegraph
spec:
containers:
- name: server
image: docker.io/sourcegraph/server:5.3.0
ports:
- containerPort: 7080
volumeMounts:
- name: data
mountPath: /var/opt/sourcegraph
volumes:
- name: data
persistentVolumeClaim:
claimName: sourcegraph-data
---
apiVersion: v1
kind: Service
metadata:
name: sourcegraph
spec:
selector:
app: sourcegraph
ports:
- port: 7080
targetPort: 7080
生产推荐 Helm;PVC ≥500Gi 存代码索引。
Latest tags (20)
View all 13242 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/sourcegraph/server :6.12.5040 | linux/amd64 | 2026/02/10 19:37 | 1.1 GB | sha256:57a5802dfb3f… | |||
docker.io/sourcegraph/server :6.12.3032 | linux/amd64 | 2026/01/30 03:50 | 1.1 GB | sha256:d0f044a52612… | |||
docker.io/sourcegraph/server :6.12.2541 | linux/amd64 | 2026/01/27 09:49 | 1.1 GB | sha256:9bd7a1f3f2f0… | |||
docker.io/sourcegraph/server :6.12.1792 | linux/amd64 | 2026/01/23 04:46 | 1.1 GB | sha256:124bca7c4d6d… | |||
docker.io/sourcegraph/server :6.12.1287 | linux/amd64 | 2026/01/20 10:07 | 1.1 GB | sha256:91afc5b64510… | |||
docker.io/sourcegraph/server :6.12.1271 | linux/amd64 | 2026/01/20 06:58 | 1.1 GB | sha256:8670b33679c3… | |||
docker.io/sourcegraph/server :6.12.0 | linux/amd64 | 2026/01/13 04:32 | 1.1 GB | sha256:21d52316170f… | |||
docker.io/sourcegraph/server :6.11.5639 | linux/amd64 | 2026/01/09 12:18 | 1.2 GB | sha256:3a786f6dae5e… | |||
docker.io/sourcegraph/server :6.11.5428 | linux/amd64 | 2026/01/08 07:57 | 1.2 GB | sha256:0c265eeb4a65… | |||
docker.io/sourcegraph/server :6.11.2752 | linux/amd64 | 2025/12/24 21:28 | 1.2 GB | sha256:6c85c6dcb119… | |||
docker.io/sourcegraph/server :6.11.1446 | linux/amd64 | 2025/12/17 04:53 | 1.2 GB | sha256:9208401fd8cd… | |||
docker.io/sourcegraph/server :6.11.0 | linux/amd64 | 2025/12/09 02:55 | 1.2 GB | sha256:5bb076a03856… | |||
docker.io/sourcegraph/server :6.10.3349 | linux/amd64 | 2025/11/25 08:06 | 1.2 GB | sha256:de90be1b51ab… | |||
docker.io/sourcegraph/server :6.10.0 | linux/amd64 | 2025/11/13 04:47 | 1.2 GB | sha256:b22517545e9b… | |||
docker.io/sourcegraph/server :6.9.2509 | linux/amd64 | 2025/10/30 07:24 | 1.2 GB | sha256:ce5a0c76dcef… | |||
docker.io/sourcegraph/server :6.9.1277 | linux/amd64 | 2025/10/23 05:38 | 1.2 GB | sha256:c5420ad9c3a5… | |||
docker.io/sourcegraph/server :6.9.902 | linux/amd64 | 2025/10/21 03:39 | 1.2 GB | sha256:971c034c862a… | |||
docker.io/sourcegraph/server :6.9.0 | linux/amd64 | 2025/10/16 02:38 | 1.2 GB | sha256:2c6dfd3c181f… | |||
docker.io/sourcegraph/server :6.8.2313 | linux/amd64 | 2025/10/02 03:08 | 1.2 GB | sha256:7e111fa3d749… | |||
docker.io/sourcegraph/server :6.8.0 | linux/amd64 | 2025/09/19 05:13 | 1.2 GB | sha256:60103ca14929… |