Backdocker.io/gitlab/gitlab-runner
docker.io
docker.io/gitlab/gitlab-runner:v18.0.2
GitLab CI Multi Runner used to fetch and run pipeline jobs with GitLab CI
Size
94.88 MB
Local pulls
9
Upstream pulls
3,642,702,667
Synced at
2026-08-15 09:49:05
China image
registry.cn-global.starbucket.com.cn/starbucket/docker.io/gitlab/gitlab-runner:v18.0.2
Source image
docker.io/gitlab/gitlab-runner:v18.0.2
Image info
- Image ID
- sha256:c7b7ce3e7a064a88a38074cfcb60dad6c0a2940071f80c5cf7870e8f1876b486
- Image tag
- v18.0.2
- Image size
- 94.88 MB
- Platform
- linux/arm64
- Registry
- docker.io
- Project
- Hub pageAll tagsLocal repo
- CMD
- run --user=gitlab-runner --working-directory=/home/gitlab-runner
- Entrypoint
- /usr/bin/dumb-init /entrypoint
- Working dir
- —
- User
- —
- StopSignal
- SIGQUIT
- Created
- 2025-05-22T00:19:50.475Z
Exposed ports 0
None
Volumes
- /etc/gitlab-runner
- /home/gitlab-runner
Environment 1
| PATH | /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
Labels 2
| org.opencontainers.image.version | 24.04 |
| org.opencontainers.image.ref.name | ubuntu |
Pull commands
Docker
docker pull registry.cn-global.starbucket.com.cn/starbucket/docker.io/gitlab/gitlab-runner:v18.0.2
docker tag registry.cn-global.starbucket.com.cn/starbucket/docker.io/gitlab/gitlab-runner:v18.0.2 docker.io/gitlab/gitlab-runner:v18.0.2
Containerd
ctr images pull registry.cn-global.starbucket.com.cn/starbucket/docker.io/gitlab/gitlab-runner:v18.0.2
ctr images tag registry.cn-global.starbucket.com.cn/starbucket/docker.io/gitlab/gitlab-runner:v18.0.2 docker.io/gitlab/gitlab-runner:v18.0.2
YAML quick replace
sed -i 's#docker.io/gitlab/gitlab-runner:v18.0.2#registry.cn-global.starbucket.com.cn/starbucket/docker.io/gitlab/gitlab-runner:v18.0.2#' deployment.yaml
Global registry mirror
Docker
Write Docker daemon.json so registry-mirrors points to this site, then restart Docker
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<'EOF'
{
"registry-mirrors": ["https://registry.cn-global.starbucket.com.cn"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart dockerContainerd
Write containerd certs.d hosts.toml so docker.io pulls via this site, then restart containerd
sudo mkdir -p /etc/containerd/certs.d/docker.io sudo tee /etc/containerd/certs.d/docker.io/hosts.toml <<'EOF' server = "https://docker.io" [host."https://registry.cn-global.starbucket.com.cn"] capabilities = ["pull", "resolve"] EOF sudo mkdir -p /etc/containerd if [ ! -f /etc/containerd/config.toml ]; then sudo containerd config default | sudo tee /etc/containerd/config.toml >/dev/null fi sudo sed -i 's#config_path = ""#config_path = "/etc/containerd/certs.d"#' /etc/containerd/config.toml sudo systemctl restart containerd
Build history 16
2025-05-21 22:14:31
COPY clear-docker-cache /usr/share/gitlab-runner/ # buildkit
2025-05-21 22:14:27
COPY gitlab-runner-linux-arm64 /usr/bin/gitlab-runner # buildkit
2025-05-21 22:14:27empty layer
ARG TARGETARCH=arm64
2025-05-21 22:14:27empty layer
ARG TARGETOS=linux
2025-03-31 16:02:40empty layer
CMD ["run" "--user=gitlab-runner" "--working-directory=/home/gitlab-runner"]
2025-03-31 16:02:40empty layer
ENTRYPOINT ["/usr/bin/dumb-init" "/entrypoint"]
2025-03-31 16:02:40empty layer
VOLUME [/etc/gitlab-runner /home/gitlab-runner]
2025-03-31 16:02:40empty layer
STOPSIGNAL SIGQUIT