轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
git

niceos/git

niceos

NiceOS Git container with Bitnami-compatible runtime contract

1 次收藏下载次数: 0状态:社区镜像维护者:niceos仓库类型:镜像最近更新:30 天前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

镜像简介
下载命令
镜像标签列表与下载命令
轩辕镜像,不浪费每一次拉取。
点击查看

NiceOS Git Container

A NiceOS.Container based Git application image with a Bitnami-compatible runtime contract for migration from historical Bitnami-style Git containers and charts.

docker.io/niceos/git is a Git command-line container built on the NiceOS.Container stream. It preserves the operational layout expected by Bitnami-style images while replacing Debian/minideb/apt/Stacksmith internals with NiceOS RPM packages and a reproducible NiceOS root filesystem.

This image is not an official Bitnami image and is not endorsed by Bitnami, Broadcom, VMware, or the Git project. It is a NiceSOFT/NiceOS compatibility target intended to help users migrate existing automation, Helm charts, CI jobs, and container workflows that expect the historical Bitnami runtime contract.


TL;DR

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 git --version

Run an interactive shell:

console
docker run --rm -it docker.io/niceos/git:2.54.0-niceos13-r1

Clone a repository over HTTPS:

console
docker run --rm -it \
  -v "$PWD/work:/work" \
  -w /work \
  docker.io/niceos/git:2.54.0-niceos13-r1 \
  git clone https://github.com/git/git.git

Run with an arbitrary non-root UID:

console
docker run --rm \
  --user 12345:0 \
  docker.io/niceos/git:2.54.0-niceos13-r1 \
  /bin/bash -c 'id && getent passwd "$(id -u)" && git --version'

Run with a read-only root filesystem:

console
docker run --rm \
  --user 12345:0 \
  --cap-drop ALL \
  --security-opt no-new-privileges \
  --read-only \
  --tmpfs /tmp:rw,exec,nosuid,nodev \
  --tmpfs /var/tmp:rw,exec,nosuid,nodev \
  --tmpfs /run:rw,nosuid,nodev \
  docker.io/niceos/git:2.54.0-niceos13-r1 \
  git --version

Why use this image?

This image is designed for users who want the operational convenience of Bitnami-style application containers, but with a NiceOS/RPM-controlled base.

NiceOS goals

  • Preserve the historical Bitnami-style runtime layout where it matters.
  • Keep application images reproducible and package-managed through NiceOS.Container RPMs.
  • Avoid hidden Debian/minideb/apt/Stacksmith build internals in production images.
  • Keep the runtime image small enough for practical CI/CD use, but not so minimal that common Git workflows break.
  • Support arbitrary UID execution through nss_wrapper.
  • Support read-only root filesystem scenarios.
  • Keep Git LFS available for repositories that require it.
  • Remove package managers and build tools from the final runtime image.
  • Use ordinary glibc, OpenSSL, CA trust, OpenSSH client tools, and familiar Linux userland behavior.

What this image is

This image is a NiceOS-based Bitnami-compatible migration target.

It preserves the parts of the Bitnami-style contract that existing charts, jobs, scripts, and user expectations commonly depend on:

  • /opt/bitnami
  • /opt/bitnami/scripts
  • /opt/bitnami/scripts/git/entrypoint.sh
  • /opt/bitnami/git/bin
  • /opt/bitnami/common/bin
  • /opt/bitnami/common/lib/libnss_wrapper.so
  • /bitnami/git
  • BITNAMI_* environment variables
  • NSS_WRAPPER_LIB
  • arbitrary UID support
  • shell entrypoint behavior
  • Git command lookup through /opt/bitnami/git/bin
  • Git LFS filter configuration
  • HTTPS and SSH Git workflows

What this image is not

This image is not:

  • an official Bitnami image;
  • a copy of Bitnami Secure Images;
  • a Debian/minideb based image;
  • a generic OS container with package manager left inside;
  • a Git server image with sshd enabled;
  • a full development toolbox with compilers and build systems.

The final image intentionally removes package manager and build-time tooling from the runtime filesystem.


Image variants and tags

Recommended immutable tag:

text
docker.io/niceos/git:2.54.0-niceos13-r1

Convenience version tag:

text
docker.io/niceos/git:2.54.0

Recommended future rolling tags, when enabled by release policy:

text
docker.io/niceos/git:latest
docker.io/niceos/git:2
docker.io/niceos/git:2.54

For production, prefer immutable tags such as:

text
2.54.0-niceos13-r1

Tag meaning

text
2.54.0-niceos13-r1
│      │        └── image revision
│      └────────── NiceOS.Container release stream
└───────────────── upstream Git application version

Included software

ComponentVersionSource
NiceOS.Container13NiceOS.Container RPM stream
Git2.54.0NiceOS git RPM
Git LFS3.7.1NiceOS git-lfs RPM
OpenSSH clients10.2p1NiceOS RPM
curl8.20.0NiceOS RPM
OpenSSL runtime3.6.1NiceOS RPM
glibc2.43NiceOS RPM
nss_wrapper1.1.16NiceOS RPM
Bitnami-compatible helper scripts20260605NiceOS RPM

The image uses NiceOS RPM packages during image assembly and removes package manager commands from the final runtime image.


Runtime layout

Important paths:

text
/opt/bitnami
/opt/bitnami/git/bin
/opt/bitnami/common/bin
/opt/bitnami/common/lib/libnss_wrapper.so
/opt/bitnami/scripts
/opt/bitnami/scripts/git/entrypoint.sh
/bitnami/git
/etc/gitconfig
/etc/profile.d/00-bitnami-path.sh

Git commands are exposed through /opt/bitnami/git/bin as compatibility symlinks.

Expected command resolution:

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 command -v git

Expected output:

text
/opt/bitnami/git/bin/git

Expected Git LFS command resolution:

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 command -v git-lfs

Expected output:

text
/opt/bitnami/git/bin/git-lfs

Environment variables

VariableValuePurpose
HOME/Bitnami-compatible home for arbitrary UID runtime
OS_ARCHbuild target archArchitecture marker
OS_FLAVOURniceos-container-13NiceOS.Container stream marker
OS_NAMElinuxOS family marker
APP_VERSION2.54.0Git application version
IMAGE_REVISION1NiceOS image revision
BITNAMI_APP_NAMEgitBitnami-style app identifier
BITNAMI_ROOT_DIR/opt/bitnamiBitnami-style root directory
BITNAMI_VOLUME_DIR/bitnamiBitnami-style volume directory
NSS_WRAPPER_LIB/opt/bitnami/common/lib/libnss_wrapper.soArbitrary UID support
PATH/opt/bitnami/git/bin:/opt/bitnami/common/bin:...Compatibility command lookup

Running commands

The container entrypoint prepares the compatibility runtime and then executes the requested command.

Show Git version:

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 git --version

Show Git LFS version:

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 git-lfs version

Run Bash:

console
docker run --rm -it docker.io/niceos/git:2.54.0-niceos13-r1 /bin/bash

Run a login shell:

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 /bin/bash -lc 'echo "$PATH" && command -v git'

Git over HTTPS

The image includes CA certificates and a deterministic system Git configuration:

ini
[http]
    sslCAInfo = /etc/pki/tls/certs/ca-bundle.crt
    sslCAPath = /etc/ssl/certs

Example:

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 \
  git ls-remote https://github.com/git/git.git HEAD

Git over SSH

The image includes OpenSSH client tools:

  • ssh
  • ssh-keygen
  • ssh-agent
  • ssh-add
  • scp
  • sftp

Example with a mounted private key:

console
docker run --rm -it \
  -v "$HOME/.ssh:/ssh:ro" \
  -e GIT_SSH_COMMAND='ssh -i /ssh/id_ed25519 -o StrictHostKeyChecking=accept-new' \
  docker.io/niceos/git:2.54.0-niceos13-r1 \
  git ls-remote git@github.com:git/git.git HEAD

This image is not an SSH server image. sshd is intentionally removed from the final runtime image.

When running with a read-only root filesystem, the entrypoint may warn that /etc/ssh is not writable and host key generation is skipped. This is expected for this CLI-oriented image and does not affect outbound Git SSH client workflows.


Git LFS

Git LFS is installed as a separate NiceOS RPM package and included in this application image.

The image provides system-wide Git LFS filter configuration in /etc/gitconfig:

ini
[filter "lfs"]
    clean = git-lfs clean -- %f
    smudge = git-lfs smudge -- %f
    process = git-lfs filter-process
    required = true

Verify:

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 \
  /bin/bash -c 'git-lfs version && git lfs env'

Arbitrary UID support

This image supports arbitrary UID execution through nss_wrapper.

Example:

console
docker run --rm \
  --user 12345:0 \
  docker.io/niceos/git:2.54.0-niceos13-r1 \
  /bin/bash -c 'id && getent passwd "$(id -u)" && git --version'

Expected behavior:

  • the arbitrary UID resolves through NSS;
  • Git can run without a real /etc/passwd entry;
  • HOME=/ is used as the compatibility home.

Read-only root filesystem

The image is compatible with read-only root filesystem execution for normal Git CLI workloads.

Example:

console
docker run --rm \
  --user 12345:0 \
  --cap-drop ALL \
  --security-opt no-new-privileges \
  --read-only \
  --tmpfs /tmp:rw,exec,nosuid,nodev \
  --tmpfs /var/tmp:rw,exec,nosuid,nodev \
  --tmpfs /run:rw,nosuid,nodev \
  docker.io/niceos/git:2.54.0-niceos13-r1 \
  /bin/bash -c 'git --version && git ls-remote https://github.com/git/git.git HEAD >/dev/null && echo OK'

Recommended writable mounts:

text
/tmp
/var/tmp
/run
/work or another project workspace

Volumes

This image does not require a persistent volume for simple Git commands.

Common mounts:

Host pathContainer pathPurpose
$PWD/workproject checkout/workspace
$HOME/.ssh/ssh:roSSH credentials
$HOME/.gitconfig/.gitconfig:rouser Git config
custom storage/bitnami/gitBitnami-style persistent location

Example:

console
docker run --rm -it \
  -v "$PWD:/work" \
  -w /work \
  docker.io/niceos/git:2.54.0-niceos13-r1 \
  git status

Compatibility with Bitnami-style workflows

This image is intended to preserve the runtime contract commonly expected by historical Bitnami Git containers:

Contract areaStatus
/opt/bitnami rootpreserved
/opt/bitnami/scripts helper locationpreserved
/opt/bitnami/scripts/git/entrypoint.shpreserved
/opt/bitnami/git/bin command pathpreserved
/opt/bitnami/common/lib/libnss_wrapper.sopreserved
BITNAMI_* environment variablespreserved
arbitrary UIDsupported
CMD ["/bin/bash"]preserved
ENTRYPOINT script behaviorpreserved
Git over HTTPSsupported
Git over SSH client workflowssupported
Git LFSsupported
Debian/minideb/apt internalsreplaced with NiceOS/RPM
Stacksmith prebuilt componentsreplaced with NiceOS RPMs
package manager in final runtimeremoved
build tools in final runtimeremoved

Migration example

Old style:

console
docker run --rm bitnami/git:latest git --version

NiceOS style:

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 git --version

For production, prefer immutable tags instead of latest.


Security posture

The final image is assembled from NiceOS.Container RPM packages and then cleaned.

Removed from runtime:

  • tdnf
  • dnf
  • yum
  • systemctl
  • sshd
  • gcc
  • make
  • cmake
  • ninja
  • package repository metadata
  • RPM GPG key material copied only for build/install operations
  • package manager caches
  • documentation/man/info trees in the runtime root filesystem

Recommended runtime flags for restrictive environments:

console
--cap-drop ALL
--security-opt no-new-privileges
--read-only
--tmpfs /tmp:rw,exec,nosuid,nodev
--tmpfs /var/tmp:rw,exec,nosuid,nodev
--tmpfs /run:rw,nosuid,nodev

For workflows that need SSH private keys, mount them read-only and use GIT_SSH_COMMAND.


Building the image

Build locally:

console
podman build --format docker --no-cache \
  --build-arg NICEOS_BASE_IMAGE=docker.io/niceosapps/niceos-container-base:13 \
  --build-arg NICEOS_VERSION=13 \
  --build-arg APP_VERSION=2.54.0 \
  --build-arg IMAGE_REVISION=1 \
  -t docker.io/niceos/git:2.54.0-niceos13-r1 \
  -t docker.io/niceos/git:2.54.0 \
  .

Optional compatibility tag for local testing with the historical internal namespace:

console
podman tag docker.io/niceos/git:2.54.0-niceos13-r1 docker.io/niceosapps/git:2.54.0-niceos13-r1

Testing

Run the local smoke suite:

console
./tests/smoke.sh docker.io/niceos/git:2.54.0-niceos13-r1

Run the local compatibility suite:

console
./tests/local-compat-suite.sh docker.io/niceos/git:2.54.0-niceos13-r1

Compare with the reference image, when available:

console
./tests/compare-with-bitnami.sh \
  docker.io/bitnami/git:latest \
  docker.io/niceos/git:2.54.0-niceos13-r1

Run individual checks manually:

console
docker run --rm docker.io/niceos/git:2.54.0-niceos13-r1 /bin/bash -c '
set -euo pipefail
test "$BITNAMI_APP_NAME" = "git"
test "$BITNAMI_ROOT_DIR" = "/opt/bitnami"
test "$BITNAMI_VOLUME_DIR" = "/bitnami"
test "$NSS_WRAPPER_LIB" = "/opt/bitnami/common/lib/libnss_wrapper.so"
test "$(command -v git)" = "/opt/bitnami/git/bin/git"
test "$(command -v git-lfs)" = "/opt/bitnami/git/bin/git-lfs"
git --version | grep "2.54.0"
git-lfs version | grep "3.7.1"
echo OK
'

Repository layout

text
.
├── compat
│   ├── bitnami-reference-commit.txt
│   └── contract.yaml
├── Dockerfile
├── rootfs
│   ├── .bash_profile
│   ├── etc
│   │   ├── gitconfig
│   │   └── profile.d
│   │       └── 00-bitnami-path.sh
│   └── opt
│       └── bitnami
│           └── scripts
│               └── git
│                   └── entrypoint.sh
└── tests
    ├── bitnami-contract-smoke.sh
    ├── compare-with-bitnami.sh
    ├── local-compat-suite.sh
    └── smoke.sh

prebuildfs/ is intentionally not required for the production image build. The common Bitnami-compatible helper libraries are delivered by the NiceOS RPM package niceos-bitnami-compat-scripts.

reports/ is treated as generated output from comparison/testing and should not be part of the normal Docker build context.


Source, packaging, and provenance

NiceOS build model:

text
NiceOS.Container RPM repository
  ├── git
  ├── git-lfs
  ├── nss_wrapper
  ├── niceos-bitnami-compat-scripts
  └── runtime dependencies

app-git repository
  ├── Dockerfile
  ├── rootfs application contract files
  ├── compatibility contract
  └── tests

The final image is assembled from RPM packages and application-specific compatibility files.

Recommended metadata labels include:

  • org.opencontainers.image.title
  • org.opencontainers.image.description
  • org.opencontainers.image.vendor
  • org.opencontainers.image.version
  • org.opencontainers.image.revision
  • org.opencontainers.image.created
  • org.opencontainers.image.source
  • org.opencontainers.image.documentation
  • org.opencontainers.image.licenses
  • org.opencontainers.image.base.name
  • ru.niceos.image.*

Licensing

The image contains software under multiple open source licenses.

Primary components:

  • Git: GPL-2.0-only
  • Git LFS: MIT
  • nss_wrapper: BSD-3-Clause
  • NiceOS compatibility scripts: Apache-2.0
  • Application image metadata and NiceOS-specific integration files: Apache-2.0 unless stated otherwise

This repository may contain compatibility files derived from Apache-2.0 licensed historical Bitnami container scripts where explicitly noted. Bitnami, Broadcom, VMware, and related names are trademarks of their respective owners. Their mention is for compatibility and migration reference only.


Support policy

This image is provided by NiceSOFT/NiceOS as part of the NiceOS Application Containers effort.

Recommended support workflow:

  1. reproduce with the immutable image tag;
  2. collect git --version, git-lfs version, and image digest;
  3. run tests/local-compat-suite.sh;
  4. open an issue in the NiceOS container repository;
  5. include whether the issue is with HTTPS, SSH, LFS, arbitrary UID, read-only rootfs, or Helm/chart migration.

Notable changes

2.54.0-niceos13-r1

  • Initial NiceOS Git application image.
  • Uses NiceOS.Container 13 base.
  • Provides Git 2.54.0.
  • Provides Git LFS 3.7.1.
  • Preserves Bitnami-style /opt/bitnami layout.
  • Preserves /opt/bitnami/scripts/git/entrypoint.sh.
  • Uses niceos-bitnami-compat-scripts RPM for common helper libraries.
  • Uses nss_wrapper for arbitrary UID support.
  • Supports read-only root filesystem execution for Git CLI workflows.
  • Removes package manager and build tools from the final runtime image.
  • Replaces Debian/minideb/apt/Stacksmith internals with NiceOS RPM packages.

Disclaimer

This is a NiceOS Application Container. It is not an official Bitnami container and is not affiliated with or endorsed by Bitnami, Broadcom, VMware, or the Git project. Compatibility references are used only to describe migration behavior and runtime contract expectations.

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 git 镜像标签

docker pull docker.xuanyuan.run/niceos/git:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull niceos/git:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
niceos/git
教程轩辕镜像功能与使用教程
定价查看流量套餐与价格
热门查看热门 Docker 镜像推荐
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多 git 镜像推荐

alpine/git logo

alpine/git

Alpine 工具与轻量镜像
这是一个运行于Alpine Linux系统中的简易Git容器,Alpine Linux以其极致精简的特性为基础,使得该容器在保持Git核心功能的同时,具备轻量高效的运行表现,尤其适用于各类小型Linux发行版环境,能够满足资源受限场景下的版本控制需求,为嵌入式系统、边缘设备或轻量级开发环境提供便捷的Git服务支持。
252 次收藏1亿+ 次下载
28 天前更新
paketobuildpacks/git logo

paketobuildpacks/git

paketobuildpacks
暂无描述
100万+ 次下载
5 个月前更新
activestate/git logo

activestate/git

activestate
ActiveState的可定制、低至无漏洞的Git容器镜像,提供安全、最新的Git工具链,适用于构建和运行Git应用,作为生产就绪Git镜像的可靠基础。
5.1千+ 次下载
23 天前更新
cleanstart/git logo

cleanstart/git

cleanstart
Secure by Design,为速度构建,基于最小化CleanStart OS的加固容器镜像。
1万+ 次下载
23 天前更新
stagex/git logo

stagex/git

stagex
用于代码及文件版本管理的分布式系统,支持多人协作开发,通过本地仓库实现独立工作与版本追踪。
5万+ 次下载
1 年前更新
pnnlmiscscripts/git logo

pnnlmiscscripts/git

pnnlmiscscripts
暂无描述
2.3千+ 次下载
1 年前更新

查看更多 git 相关镜像

更多相关 Docker 镜像与资源

以下是 niceos/git 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:

  • alpine/git Docker 镜像说明
  • bitnami/git Docker 镜像说明(Git 版本控制工具,Bitnami 企业级配置,适合代码版本管理)
  • mcp/git Docker 镜像说明(Git MCP 工具,适合 LLM 通过 MCP 协议操作 Git 仓库)
  • chainguard/git Docker 镜像说明(Chainguard 安全加固 Git,适合供应链安全版本控制)
  • activestate/git Docker 镜像说明(Git 容器镜像,适合 activestate 维护的 Git 工作负载部署)