广告图片

docker.io/pandoc/extra:3.9-ubuntu linux/amd64

docker.io/pandoc/extra:3.9-ubuntu - 国内下载镜像源 浏览次数:11

这是一个包含 Pandoc 以及许多额外滤镜和格式转换器的 Docker 镜像。它扩展了基础 Pandoc 镜像的功能,提供更广泛的文档转换支持。

源镜像 docker.io/pandoc/extra:3.9-ubuntu
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu
镜像ID sha256:1b55824caafab1f3479bdf37152306126d9c326a8fc0b16801d91136d1e4bcdc
镜像TAG 3.9-ubuntu
大小 1.32GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /usr/local/bin/pandoc
工作目录 /data
OS/平台 linux/amd64
浏览量 11 次
贡献者
镜像创建 2026-03-30T14:33:11.770004191Z
同步时间 2026-04-21 16:44
环境变量
PATH=/opt/texlive/texdir/bin/default:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin XDG_DATA_HOME=/usr/local/share UV_TOOL_BIN_DIR=/usr/local/bin/ UV_TOOL_DIR=/usr/local/share/uv/tools PANDOC_DATA_HOME=/usr/local/share/pandoc PANDOC_TEMPLATES_DIR=/usr/local/share/pandoc/templates
镜像标签
Albert Krewinkel <albert+pandoc@tarleb.com>: maintainer Albert Krewinkel <albert+pandoc@tarleb.com>: org.opencontainers.image.authors Large pandoc image with many LaTeX extras, including popular fonts and the “Eisvogel” template.: org.opencontainers.image.description GPL-2.0-or-later: org.opencontainers.image.licenses ubuntu: org.opencontainers.image.ref.name https://github.com/pandoc/dockerfiles: org.opencontainers.image.source pandoc with LaTeX and extras: org.opencontainers.image.title https://github.com/pandoc/dockerfiles: org.opencontainers.image.url The pandoc Docker team: org.opencontainers.image.vendor 3.9.0.2: org.opencontainers.image.version John MacFarlane: org.pandoc.author Albert Krewinkel <albert+pandoc@tarleb.com>: org.pandoc.maintainer 3.9.0.2: org.pandoc.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu  docker.io/pandoc/extra:3.9-ubuntu

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu  docker.io/pandoc/extra:3.9-ubuntu

Shell快速替换命令

sed -i 's#pandoc/extra:3.9-ubuntu#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu  docker.io/pandoc/extra:3.9-ubuntu'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu  docker.io/pandoc/extra:3.9-ubuntu'

镜像构建历史


# 2026-03-30 22:33:11  57.40MB 执行命令并创建新的镜像层
RUN |6 EISVOGEL_REPO=https://github.com/Wandmalfarbe/pandoc-latex-template/releases/download LUA_FILTERS_REPO=https://github.com/pandoc/lua-filters/releases/download LUA_FILTERS_VERSION=2021-11-05 TARGETARCH=amd64 TECTONIC_REPO=https://github.com/tectonic-typesetting/tectonic/releases/download TECTONIC_VERSION=0.15.0 /bin/sh -c set -ex;
case "$TARGETARCH" in
    (amd64)
        TECTONIC_ARCH='x86_64';
        TECTONIC_CLIB='gnu';
        ;;
    (arm64)
        TECTONIC_ARCH='aarch64' ;
        TECTONIC_CLIB='musl';
        ;;
    (*)
        printf 'unsupported target arch for tectonic: %s\n' "$TARGETARCH";
        exit 1 ;
        ;;
esac
TECTONIC_TARBALL_FMT='tectonic-%s-%s-unknown-linux-%s.tar.gz'
TECTONIC_TARBALL="$(printf "$TECTONIC_TARBALL_FMT" \
    "${TECTONIC_VERSION}" "${TECTONIC_ARCH}" "${TECTONIC_CLIB}" \
)"
wget ${TECTONIC_REPO}/tectonic%40${TECTONIC_VERSION}/${TECTONIC_TARBALL}
tar xzf ${TECTONIC_TARBALL} -C /usr/local/bin/
rm -f ${TECTONIC_TARBALL}
 # buildkit
                        
# 2026-03-30 22:33:10  0.00B 定义构建参数
ARG TECTONIC_VERSION=0.15.0
                        
# 2026-03-30 22:33:10  0.00B 定义构建参数
ARG TECTONIC_REPO=https://github.com/tectonic-typesetting/tectonic/releases/download
                        
# 2026-03-30 22:33:10  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2026-03-30 22:33:10  186.89KB 执行命令并创建新的镜像层
RUN |3 EISVOGEL_REPO=https://github.com/Wandmalfarbe/pandoc-latex-template/releases/download LUA_FILTERS_REPO=https://github.com/pandoc/lua-filters/releases/download LUA_FILTERS_VERSION=2021-11-05 /bin/sh -c wget -qO- ${LUA_FILTERS_REPO}/v${LUA_FILTERS_VERSION}/lua-filters.tar.gz     | tar xz         --strip-components=1         --one-top-level=${PANDOC_DATA_HOME} # buildkit
                        
# 2026-03-30 22:33:10  0.00B 定义构建参数
ARG LUA_FILTERS_VERSION=2021-11-05
                        
# 2026-03-30 22:33:10  0.00B 定义构建参数
ARG LUA_FILTERS_REPO=https://github.com/pandoc/lua-filters/releases/download
                        
# 2026-03-30 22:33:10  51.26KB 执行命令并创建新的镜像层
RUN |1 EISVOGEL_REPO=https://github.com/Wandmalfarbe/pandoc-latex-template/releases/download /bin/sh -c wget -qO- ${EISVOGEL_REPO}/v3.3.0/Eisvogel.tar.gz     | tar xz         --strip-components=1         --one-top-level=${PANDOC_TEMPLATES_DIR}         Eisvogel-3.3.0/eisvogel.latex         Eisvogel-3.3.0/eisvogel.beamer # buildkit
                        
# 2026-03-30 22:33:09  0.00B 定义构建参数
ARG EISVOGEL_REPO=https://github.com/Wandmalfarbe/pandoc-latex-template/releases/download
                        
# 2026-03-30 22:33:09  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir -p ${PANDOC_TEMPLATES_DIR} # buildkit
                        
# 2026-03-30 22:33:09  0.00B 设置环境变量 PANDOC_TEMPLATES_DIR
ENV PANDOC_TEMPLATES_DIR=/usr/local/share/pandoc/templates
                        
# 2026-03-30 22:33:09  0.00B 设置环境变量 PANDOC_DATA_HOME
ENV PANDOC_DATA_HOME=/usr/local/share/pandoc
                        
# 2026-03-30 22:33:09  372.69MB 执行命令并创建新的镜像层
RUN /bin/sh -c tlmgr install         abstract         adjustbox         awesomebox         babel-german         background         beamertheme-metropolis         bidi         catchfile         cm-super         collectbox         csquotes         draftwatermark         enumitem         environ         environ         etoolbox         everypage         filehook         fontawesome5         footmisc         footnotebackref         framed         fvextra         hardwrap         incgraph         koma-script         letltxmacro         lineno         listingsutf8         ly1         mdframed         mweights         needspace         pagecolor         pdfcol         pgf         pgfopts         sectsty         sourcecodepro         sourcesans         sourceserif         tcolorbox         tcolorbox         tikzfill         titlesec         titling         transparent         trimspaces         ucharcat         ulem         unicode-math         upquote         xecjk         xltxtra         xurl         zref # buildkit
                        
# 2026-03-30 22:31:56  157.59MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get -q --no-allow-insecure-repositories update &&     apt-get install --assume-yes --no-install-recommends python3-pip &&     uv tool install 'pandoc-codeblock-include==1.1.*' &&     uv tool install 'pandoc-latex-environment==1.2.*' &&     uv tool install 'pandoc-include==1.4.*' # buildkit
                        
# 2026-03-30 22:31:56  0.00B 设置环境变量 UV_TOOL_DIR
ENV UV_TOOL_DIR=/usr/local/share/uv/tools
                        
# 2026-03-30 22:31:56  0.00B 设置环境变量 UV_TOOL_BIN_DIR
ENV UV_TOOL_BIN_DIR=/usr/local/bin/
                        
# 2026-03-30 22:31:42  57.35MB 复制新文件或目录到容器中
COPY /uv /uvx /bin/ # buildkit
                        
# 2026-03-30 22:26:48  0.00B 设置工作目录为/data
WORKDIR /data
                        
# 2026-03-30 22:26:48  252.14MB 执行命令并创建新的镜像层
RUN |2 texlive_bin=/opt/texlive/texdir/bin texlive_mirror_url= /bin/sh -c set -eux
cd /root
TEXLIVE_ARCH="$(uname -m)-$(uname -s | tr '[:upper:]' '[:lower:]')"; \
mkdir -p ${texlive_bin}
ln -sf "${texlive_bin}/${TEXLIVE_ARCH}" "${texlive_bin}/default"
# Request musl precompiled binary access
echo "binary_${TEXLIVE_ARCH} 1" >> /root/texlive.profile

# Install TeXLive
mirror_url="${texlive_mirror_url}"

if [ -z "${mirror_url}" ]; then
    # Get the mirror URL from the redirect. Otherwise, if we were to
    # always use the mirror URL, we'd run into problems whenever we get
    # installer and signatures from different mirrors that are not 100%
    # in sync.
    mirror_url=$(wget -4 --quiet --output-document=/dev/null \
                      --server-response \
                      http://mirror.ctan.org/ \
                      2>&1 | \
                      sed -ne 's/.*Location: \(.*\)$/\1/p' | head -n 1)
fi

# Trim trailing slash(es)
mirror_url=$(echo "$mirror_url" | sed -e 's/\/*$//')

installer_url="${mirror_url}/systems/texlive/tlnet"

# Download the install-tl perl script. The archive integrity and signature is
# verified later, so it's ok if we use an insecure connection.
wget -4 --no-verbose --no-check-certificate \
    "$installer_url/install-tl-unx.tar.gz" \
    "$installer_url/install-tl-unx.tar.gz".sha512 \
    "$installer_url/install-tl-unx.tar.gz".sha512.asc \

## Verifiy installer integrity
# get current signing key
gpg --keyserver keyserver.ubuntu.com \
    --receive-key 0xC78B82D8C79512F79CC0D7C80D5E5D9106BAB6BC || exit 5
gpg --verify install-tl-unx.tar.gz.sha512.asc || exit 5
sha512sum install-tl-unx.tar.gz.sha512 || exit 5

## Proceed with installation
# Extract installer
mkdir -p ./install-tl
tar --strip-components 1 -zvxf install-tl-unx.tar.gz -C "$PWD/install-tl"

# Run the default installation with the specified profile.
./install-tl/install-tl \
    -repository "${installer_url}" \
    --profile=/root/texlive.profile

# Cleanup installation artifacts.
rm -rf \
    ./install-tl \
    install-tl-unx.tar.gz \
    install-tl-unx.tar.gz.sha512 \
    install-tl-unx.tar.gz.sha512.asc

# Install packages required by pandoc
tlmgr install \
    --verify-repo=all \
    amsfonts \
    amsmath \
    babel \
    babel-basque \
    babel-czech \
    babel-danish \
    babel-dutch \
    babel-english \
    babel-finnish \
    babel-french \
    babel-german \
    babel-hungarian \
    babel-italian \
    babel-norsk \
    babel-polish \
    babel-portuges \
    babel-spanish \
    babel-swedish \
    beamer \
    biber \
    biblatex \
    bibtex \
    bidi \
    bidi \
    bookmark \
    booktabs \
    caption \
    cleveref \
    csquotes \
    euler \
    eurosym \
    fancyvrb \
    float \
    fontspec \
    footnotehyper \
    framed \
    geometry \
    graphics \
    hyperref \
    hyphen-basque \
    hyphen-czech \
    hyphen-danish \
    hyphen-dutch \
    hyphen-english \
    hyphen-finnish \
    hyphen-french \
    hyphen-german \
    hyphen-hungarian \
    hyphen-italian \
    hyphen-norwegian \
    hyphen-polish \
    hyphen-portuguese \
    hyphen-spanish \
    hyphen-swedish \
    ifmtarg \
    iftex \
    latexmk \
    listings \
    lm \
    lm-math \
    lua-ul \
    luacode \
    luacolor \
    lualatex-math \
    luatexbase \
    mathspec \
    memoir \
    microtype \
    multirow \
    natbib \
    parskip \
    pgf \
    selnolig \
    setspace \
    soul \
    subfig \
    tools \
    unicode-math \
    upquote \
    xcolor \
    xetex \
    xurl
# Reset to the default CTAN mirror, unless a specific mirror had been
# requested.
if [ -z "${texlive_mirror_url}" ]; then
    tlmgr option repository ctan
fi

rm -f /root/texlive.profile

# Update fonts
TERM=dumb luaotfload-tool --update && \
chmod -R o+w /opt/texlive/texdir/texmf-var
 # buildkit
                        
# 2026-03-30 22:26:48  0.00B 设置环境变量 PATH
ENV PATH=/opt/texlive/texdir/bin/default:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2026-03-30 22:26:48  0.00B 定义构建参数
ARG texlive_mirror_url=
                        
# 2026-03-30 22:26:48  0.00B 定义构建参数
ARG texlive_bin=/opt/texlive/texdir/bin
                        
# 2026-03-30 22:25:13  1.00KB 复制新文件或目录到容器中
COPY <<EOF /root/texlive.profile # buildkit
                        
# 2026-03-30 22:25:13  57.89MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get -q --no-allow-insecure-repositories update   && DEBIAN_FRONTEND=noninteractive      apt-get install --assume-yes --no-install-recommends         fontconfig         gnupg         gzip         libfontconfig1         libfreetype6         perl         tar         wget         xzdec   && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2026-03-30 22:14:51  63.94MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux

# Install curl
apt-get -q --no-allow-insecure-repositories update
apt-get install --assume-yes --no-install-recommends --mark-auto curl

url_base='https://github.com/lierdakil/pandoc-crossref/releases/download';
case "$(uname -m)" in
    ('x86_64')
        arch="X64"
        crossref_hash=a521900745f7c1621b4104119f92dd4a9b4cc527f50157ef544ae1cb8435f9c1
        ;;
    ('aarch64')
        arch="ARM64"
        crossref_hash=aaaeae858b73a4150cc91581b07e08fb6e383f476a04fd024bb03ef323b32c3e
        ;;
    (*)
        echo >&2 "error: unsupported architecture '$(uname -m)'"
        exit 1
        ;;
esac
version="v0.3.22b"
filename="pandoc-crossref-Linux-${arch}.tar.xz"
curl --proto '=https' --tlsv1.3 -sSfL -o /tmp/pandoc-crossref.tar.xz \
    "${url_base}/${version}/pandoc-crossref-linux-${arch}.tar.xz"
echo "$crossref_hash /tmp/pandoc-crossref.tar.xz" | sha256sum -c
tar -xf /tmp/pandoc-crossref.tar.xz -C /usr/local/bin pandoc-crossref
# Remove archive
rm /tmp/pandoc-crossref.tar.xz
# Curl is no longer needed
apt-get autoremove --purge --assume-yes; \
rm -rf /var/lib/apt/lists/*;
 # buildkit
                        
# 2026-03-30 22:14:43  80.69MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get -q --no-allow-insecure-repositories update   && DEBIAN_FRONTEND=noninteractive      apt-get install --assume-yes --no-install-recommends        xz-utils=5.*        librsvg2-bin=2.*   && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2026-03-30 22:12:57  4.27MB 执行命令并创建新的镜像层
RUN /bin/sh -c ln -s /usr/local/bin/pandoc /usr/local/bin/pandoc-lua   && ln -s /usr/local/bin/pandoc /usr/local/bin/pandoc-server   && apt-get -q --no-allow-insecure-repositories update   && DEBIAN_FRONTEND=noninteractive      apt-get install --assume-yes --no-install-recommends        ca-certificates=\*        liblua5.4-0=\*        libatomic1=\*        libgmp10=\*        libpcre3=\*        libyaml-0-2=\*        zlib1g=\*   && rm -rf /var/lib/apt/lists/*   && mkdir -p "$XDG_DATA_HOME"/pandoc # buildkit
                        
# 2026-03-30 22:12:50  139.17MB 复制新文件或目录到容器中
COPY /usr/local/bin/pandoc /usr/local/bin/ # buildkit
                        
# 2026-03-30 22:12:50  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/usr/local/bin/pandoc"]
                        
# 2026-03-30 22:12:50  0.00B 设置工作目录为/data
WORKDIR /data
                        
# 2026-03-30 22:12:50  0.00B 设置环境变量 XDG_DATA_HOME
ENV XDG_DATA_HOME=/usr/local/share
                        
# 2026-03-30 22:12:50  0.00B 添加元数据标签
LABEL org.pandoc.version=3.9.0.2
                        
# 2026-03-30 22:12:50  0.00B 添加元数据标签
LABEL org.pandoc.author=John MacFarlane
                        
# 2026-03-30 22:12:50  0.00B 添加元数据标签
LABEL org.pandoc.maintainer=Albert Krewinkel <albert+pandoc@tarleb.com>
                        
# 2026-03-30 22:12:50  0.00B 添加元数据标签
LABEL maintainer=Albert Krewinkel <albert+pandoc@tarleb.com>
                        
# 2026-02-24 01:17:56  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2026-02-24 01:17:55  78.14MB 
/bin/sh -c #(nop) ADD file:3f78aa860931e0853077f09eb31eddbeeef8a9dd70977305b4876aa176770721 in / 
                        
# 2026-02-24 01:17:53  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2026-02-24 01:17:53  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2026-02-24 01:17:53  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2026-02-24 01:17:53  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:1b55824caafab1f3479bdf37152306126d9c326a8fc0b16801d91136d1e4bcdc",
    "RepoTags": [
        "pandoc/extra:3.9-ubuntu",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra:3.9-ubuntu"
    ],
    "RepoDigests": [
        "pandoc/extra@sha256:07f33f3c77fdde0eede08e2e145de82a048f35ff3e642546cb6e85da9b414498",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/pandoc/extra@sha256:6476fe18d435ec1aeb13f7de2079324cbfe9fbe1611013740c81d414acf551ee"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-03-30T14:33:11.770004191Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/opt/texlive/texdir/bin/default:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "XDG_DATA_HOME=/usr/local/share",
            "UV_TOOL_BIN_DIR=/usr/local/bin/",
            "UV_TOOL_DIR=/usr/local/share/uv/tools",
            "PANDOC_DATA_HOME=/usr/local/share/pandoc",
            "PANDOC_TEMPLATES_DIR=/usr/local/share/pandoc/templates"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/data",
        "Entrypoint": [
            "/usr/local/bin/pandoc"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "Albert Krewinkel \u003calbert+pandoc@tarleb.com\u003e",
            "org.opencontainers.image.authors": "Albert Krewinkel \u003calbert+pandoc@tarleb.com\u003e",
            "org.opencontainers.image.description": "Large pandoc image with many LaTeX extras, including popular fonts and the “Eisvogel” template.",
            "org.opencontainers.image.licenses": "GPL-2.0-or-later",
            "org.opencontainers.image.ref.name": "ubuntu",
            "org.opencontainers.image.source": "https://github.com/pandoc/dockerfiles",
            "org.opencontainers.image.title": "pandoc with LaTeX and extras",
            "org.opencontainers.image.url": "https://github.com/pandoc/dockerfiles",
            "org.opencontainers.image.vendor": "The pandoc Docker team",
            "org.opencontainers.image.version": "3.9.0.2",
            "org.pandoc.author": "John MacFarlane",
            "org.pandoc.maintainer": "Albert Krewinkel \u003calbert+pandoc@tarleb.com\u003e",
            "org.pandoc.version": "3.9.0.2"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 1321509394,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/a9c2fb91a9e66cf45a1d509521d9e10825fd92a2bec8cdb036303559e5b69cd4/diff:/var/lib/docker/overlay2/fe206897f470106618453185b0558b0a6bad7cc999cb4bce2de8d444d43dec77/diff:/var/lib/docker/overlay2/d995046ffadd09c936c1c9f127bd32b0da51e196e8503723a292b5609d7f4100/diff:/var/lib/docker/overlay2/00730ffef0c3bca865422946b753c612f7e2dc5c39f86062e52b3affd1b93ed3/diff:/var/lib/docker/overlay2/f9d562d60f0c8db460eceaceb5491e759889709fb1a7732784b6cb32afc23e08/diff:/var/lib/docker/overlay2/9bfe1fd20aceed998aea5943d29adceb6ee4fb8e93c7e9164c7b235fb093ef27/diff:/var/lib/docker/overlay2/a39b1ef51a437b7ac6acbcf09e92a4b27d90d21b6a696b519082fc56cda57915/diff:/var/lib/docker/overlay2/ca1cfc4e1ed81a39262b90f507951cb1209eb8e121cebfb8cacc89e90632f6bb/diff:/var/lib/docker/overlay2/239b207c0b85926edd4406f09d67fa3ac469b384bcbd7e637c03cde692bc6503/diff:/var/lib/docker/overlay2/8052050bf6f9997839dddacb5ce3aa495db73875eac1b1d594726a9dd126091c/diff:/var/lib/docker/overlay2/131b9ff7bebff914d9113297e518e955128f649780f3abec7b758b5f6ece3746/diff:/var/lib/docker/overlay2/8d34880ddf4551177786fe51e0cd64fec0dea6fa1e6fa3388f5114ac75ceb257/diff:/var/lib/docker/overlay2/f4814b4a795b5785a783e830bfeec6ab30f79e4eea7e13ab3ab97df3ddc015fe/diff:/var/lib/docker/overlay2/00b4a1c5bdbbf2057919f8a3ebc4c29a5c53a395351c2c034009135f2781e208/diff:/var/lib/docker/overlay2/12b51652829b53cf7affd2d9bebdce42df4f361b561a2ebada708ae4854fe120/diff:/var/lib/docker/overlay2/30f4b975c43c9949a625d61080129367889f63a1f0e1a1cd316ae165bf42bbb0/diff",
            "MergedDir": "/var/lib/docker/overlay2/17aa92cf8aa78ea456fbc5dddd79995f245ce3202dbace574172da37e69a2758/merged",
            "UpperDir": "/var/lib/docker/overlay2/17aa92cf8aa78ea456fbc5dddd79995f245ce3202dbace574172da37e69a2758/diff",
            "WorkDir": "/var/lib/docker/overlay2/17aa92cf8aa78ea456fbc5dddd79995f245ce3202dbace574172da37e69a2758/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:f2a7f072635332d307212e318e07284948b89f4167fce5c4d7c9cfb7590b74b6",
            "sha256:3f0e763eb86a659705dde22e074208a75bca8d7ee3a9acdd3e3423ff335d9122",
            "sha256:b377e848f0af6f5ec66fcd83f6e4260f8177e6df662730316f1ef58b7fe9abf5",
            "sha256:7f6aaa0a77d116506aadaff4cccc3dab35e6403441b8b8e1762ef40dab5d38fd",
            "sha256:4a80742fbdce0f83d2cb977997975c95eb4acb5db3f57cf13039b70ab9a33271",
            "sha256:9aebdaaa78ee770d8d73304a2a9a83162d2cf2a97cd8a608580b0490fef59798",
            "sha256:785eaf08e6cb048f69725427749adb0b7354b86b439ea10e32d99658b0db5237",
            "sha256:eb4f30628bf72ccbb7cf80e706aaecdee7271d125a6bd633793c977f4ca56017",
            "sha256:74f6ab00aa53f41c43b819a9dc7e7bc3365f8b0dd5285accafeeeb823cca3979",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:c59de33bdf5808aacdfe8106e3029de8a05002826c05510efae8908ec96b659a",
            "sha256:aa14007d6b6a2923ce24b49692121fd9510ad48565897ffc741b4bc7aec37ec0",
            "sha256:3290f752a992dbc8a2d93788aeab0a183e2491197c930a7f10b4851b1899315f",
            "sha256:badcedfc7d4e8d854cfec1452135d89ba4f9951479a53f778bf85d7001be815d",
            "sha256:b7bd338bbc2392dc6e4eb4ca1109926aa1340f3a8dfed2b069121bdcdb2623fb",
            "sha256:04caa08a889890068456a609c36c296bab2ad53234ddef6f20b3a336332ab28c",
            "sha256:a673fed32f12ac9a218081db8d54c4bed981d69b1e44f5f6c18268b4b268d1ce"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-04-21T16:42:53.41423173+08:00"
    }
}

更多版本

docker.io/pandoc/extra:3.7

linux/amd64 docker.io1.07GB2025-08-04 10:28
494

docker.io/pandoc/extra:3.9-ubuntu

linux/amd64 docker.io1.32GB2026-04-21 16:44
10