ℹ️
注意:这是一个 latest 标签镜像

latest 并不代表最新版本,本站同步时间存在延迟,无法保证此镜像与上游最新版本一致
生产环境建议使用明确的版本号(如 v1.2.3),避免因版本不一致导致问题。 了解更多 →

logo
docker.io/collabora/code:latest
linux/arm64 docker.io 请确认架构匹配

Collabora Code

Code editor powered by LibreOffice

336
浏览次数
1.37GB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64
源镜像
docker.io/collabora/code:latest
镜像ID
sha256:901d42602b7bda898b3557d29ff22f6974431de340a35b0a14e84e9428e6028d
镜像 TAG
latest-linuxarm64
镜像大小
1.37GB
平台架构
linux/arm64
镜像源
docker.io
CMD
启动入口
/start-collabora-online.sh
工作目录
OS/平台
linux/arm64
镜像创建
2025-11-28T14:52:22.048061518Z
同步时间
2025-12-12 10:31
浏览量
336 次
贡献者
🔌 开放端口 1
9980/tcp
⚙️ 环境变量 2
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
LC_CTYPE=C.UTF-8 1
🏷️ 镜像标签 6
KeyValue
Collabora Productivity Ltd. author
https://git.libreoffice.org/core/+log/cp-25.04.7-3 commit.history.core
https://github.com/CollaboraOnline/online/commits/cp-25.04.7-3 commit.history.online
Collabora Online is a powerful collaborative Office suite that supports all major document, spreadsheet and presentation file formats, which you can integrate into your own infrastructure. Collabora Online provides data security and sovereignty, and is ideally suited to the demands of a modern distributed working environment. Delivering a familiar look and feel, Collabora Online represents a real alternative to other big-brands solutions, giving you control and flexibility. description
https://www.collaboraonline.com/code-25-04-release-notes/ release.notes
25.04.7.3 version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64  docker.io/collabora/code:latest

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64  docker.io/collabora/code:latest

Shell快速替换命令

sed -i 's#collabora/code:latest#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64  docker.io/collabora/code:latest'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64  docker.io/collabora/code:latest'

镜像构建历史


# 2025-11-28 22:52:22  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/start-collabora-online.sh"]
                        
# 2025-11-28 22:52:22  0.00B 指定运行容器时使用的用户
USER 1001
                        
# 2025-11-28 22:52:22  0.00B 声明容器运行时监听的端口
EXPOSE map[9980/tcp:{}]
                        
# 2025-11-28 22:52:22  2.33KB 执行命令并创建新的镜像层
RUN |8 author= releasenotes= version=25.04.7.3 coretag=cp-25.04.7-3 onlinetag=cp-25.04.7-3 repo= type= nobrand= /bin/sh -c chown cool:cool /start-collabora-online.sh && chmod u+x /start-collabora-online.sh # buildkit
                        
# 2025-11-28 22:52:21  2.33KB 复制新文件或目录到容器中
COPY /scripts/start-collabora-online.sh / # buildkit
                        
# 2025-11-28 22:52:21  1.27GB 执行命令并创建新的镜像层
RUN |8 author= releasenotes= version=25.04.7.3 coretag=cp-25.04.7-3 onlinetag=cp-25.04.7-3 repo= type= nobrand= /bin/sh -c apt-get update &&     apt-get -y install cpio tzdata libcap2-bin apt-transport-https gnupg2 ca-certificates curl libnss-wrapper &&     repourl="https://collaboraoffice.com/${repo:-repos}/CollaboraOnline/";     secret_key=$(cat /run/secrets/secret_key);     if [ "$type" = "cool" ] && [ -n ${secret_key+set} ]; then         echo "Based on the provided build arguments Collabora Online from customer repo will be used.";         repourl="${repourl}25.04/customer-deb-${secret_key}/";     elif [ "$type" = "key" ]; then         echo "Based on the provided build arguments license key enabled Collabora Online will be used.";         repourl="${repourl}25.04-key/";     else         echo "Based on the provided build arguments Collabora Online Development Edition will be used.";         repourl="${repourl}25.04-CODE/CODE-deb/";     fi &&     echo "deb [signed-by=/usr/share/keyrings/collaboraonline-release-keyring.gpg] ${repourl} /" > /etc/apt/sources.list.d/collabora.list &&     if [ "$repo" = "repos-snapshot" ]; then         curl https://www.collaboraoffice.com/downloads/gpg/collaboraonline-snapshot-keyring.gpg --output /usr/share/keyrings/collaboraonline-snapshot-keyring.gpg;         sed -i "s/collaboraonline-release-keyring/collaboraonline-snapshot-keyring/" /etc/apt/sources.list.d/collabora.list;     else         curl https://www.collaboraoffice.com/downloads/gpg/collaboraonline-release-keyring.gpg --output /usr/share/keyrings/collaboraonline-release-keyring.gpg;     fi &&     apt-get update &&     apt-get -y install coolwsd coolwsd-deprecated                        collaboraoffice-dict-*                        collaboraofficebasis-ar                        collaboraofficebasis-bg                        collaboraofficebasis-ca                        collaboraofficebasis-cs                        collaboraofficebasis-da                        collaboraofficebasis-de                        collaboraofficebasis-el                        collaboraofficebasis-en-gb                        collaboraofficebasis-en-us                        collaboraofficebasis-eo                        collaboraofficebasis-es                        collaboraofficebasis-eu                        collaboraofficebasis-fi                        collaboraofficebasis-fr                        collaboraofficebasis-gl                        collaboraofficebasis-he                        collaboraofficebasis-hr                        collaboraofficebasis-hu                        collaboraofficebasis-id                        collaboraofficebasis-is                        collaboraofficebasis-it                        collaboraofficebasis-ja                        collaboraofficebasis-ko                        collaboraofficebasis-lo                        collaboraofficebasis-nb                        collaboraofficebasis-nl                        collaboraofficebasis-oc                        collaboraofficebasis-pl                        collaboraofficebasis-pt                        collaboraofficebasis-pt-br                        collaboraofficebasis-ru                        collaboraofficebasis-sk                        collaboraofficebasis-sl                        collaboraofficebasis-sq                        collaboraofficebasis-sv                        collaboraofficebasis-tr                        collaboraofficebasis-uk                        collaboraofficebasis-vi                        collaboraofficebasis-zh-cn                        collaboraofficebasis-zh-tw &&     if [ -z "$nobrand" ]; then         if [ "$type" = "cool" ] || [ "$type" = "key" ]; then             apt-get -y install collabora-online-brand;         else             apt-get -y install code-brand;         fi;     fi &&     find /opt/cool -user cool -exec chown -h 1001:1001 {} \; &&     usermod -u 1001 cool && groupmod -g 1001 cool &&     chown cool:cool /etc/coolwsd/coolwsd.xml &&     chmod 644 /etc/coolwsd/coolwsd.xml &&     chown cool:cool /etc/coolwsd &&     dpkg --purge  --force-remove-essential --ignore-depends=perl-base perl-base &&     rm -rf /var/lib/apt/* &&     rm -rf /etc/coolwsd/proof_key* # buildkit
                        
# 2025-11-28 22:52:21  0.00B 设置环境变量 LC_CTYPE
ENV LC_CTYPE=C.UTF-8
                        
# 2025-11-28 22:52:21  0.00B 定义构建参数
ARG nobrand
                        
# 2025-11-28 22:52:21  0.00B 定义构建参数
ARG type
                        
# 2025-11-28 22:52:21  0.00B 定义构建参数
ARG repo
                        
# 2025-11-28 22:52:21  0.00B 添加元数据标签
LABEL commit.history.online=https://github.com/CollaboraOnline/online/commits/cp-25.04.7-3
                        
# 2025-11-28 22:52:21  0.00B 定义构建参数
ARG onlinetag
                        
# 2025-11-28 22:52:21  0.00B 添加元数据标签
LABEL commit.history.core=https://git.libreoffice.org/core/+log/cp-25.04.7-3
                        
# 2025-11-28 22:52:21  0.00B 定义构建参数
ARG coretag
                        
# 2025-11-28 22:52:21  0.00B 添加元数据标签
LABEL version=25.04.7.3
                        
# 2025-11-28 22:52:21  0.00B 定义构建参数
ARG version
                        
# 2025-11-28 22:52:21  0.00B 添加元数据标签
LABEL release.notes=https://www.collaboraonline.com/code-25-04-release-notes/
                        
# 2025-11-28 22:52:21  0.00B 定义构建参数
ARG releasenotes
                        
# 2025-11-28 22:52:21  0.00B 添加元数据标签
LABEL description=Collabora Online is a powerful collaborative Office suite that supports all major document, spreadsheet and presentation file formats, which you can integrate into your own infrastructure. Collabora Online provides data security and sovereignty, and is ideally suited to the demands of a modern distributed working environment. Delivering a familiar look and feel, Collabora Online represents a real alternative to other big-brands solutions, giving you control and flexibility.
                        
# 2025-11-28 22:52:21  0.00B 添加元数据标签
LABEL author=Collabora Productivity Ltd.
                        
# 2025-11-28 22:52:21  0.00B 定义构建参数
ARG author
                        
# 2025-11-17 08:00:00  100.56MB 
# debian.sh --arch 'arm64' out/ 'stable' '@1763337600'
                        
                    

镜像信息

{
    "Id": "sha256:901d42602b7bda898b3557d29ff22f6974431de340a35b0a14e84e9428e6028d",
    "RepoTags": [
        "collabora/code:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64"
    ],
    "RepoDigests": [
        "collabora/code@sha256:9a6eb1042fa38f80127ae4b0e9c6f0ac549b267ecc8433bc7bb906eeee0ae176",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code@sha256:8e513c90c3ef5f7f0419f5fe1198dfa4681bdac7eb266535014a87a3a335935b"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-11-28T14:52:22.048061518Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "1001",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "9980/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "LC_CTYPE=C.UTF-8"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": [
            "/start-collabora-online.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "author": "Collabora Productivity Ltd.",
            "commit.history.core": "https://git.libreoffice.org/core/+log/cp-25.04.7-3",
            "commit.history.online": "https://github.com/CollaboraOnline/online/commits/cp-25.04.7-3",
            "description": "Collabora Online is a powerful collaborative Office suite that supports all major document, spreadsheet and presentation file formats, which you can integrate into your own infrastructure. Collabora Online provides data security and sovereignty, and is ideally suited to the demands of a modern distributed working environment. Delivering a familiar look and feel, Collabora Online represents a real alternative to other big-brands solutions, giving you control and flexibility.",
            "release.notes": "https://www.collaboraonline.com/code-25-04-release-notes/",
            "version": "25.04.7.3"
        }
    },
    "Architecture": "arm64",
    "Variant": "v8",
    "Os": "linux",
    "Size": 1368074202,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/130e47d801000fa48ddf0b54c907d200f8ed17a8b2a2927dd696a46e77d18df3/diff:/var/lib/docker/overlay2/ec52f3a6e201d4a8e7d726f4ff1633c6865f81003712ded409b4b600a85b1dd6/diff:/var/lib/docker/overlay2/3aeba5bf865319e67d0a3843fa2ce19e26e03095cc4250232edb55252b52fc2b/diff",
            "MergedDir": "/var/lib/docker/overlay2/68bbf585f12fc79d185e70cbc8531069072af3c73407f14575686a2128f9a3f9/merged",
            "UpperDir": "/var/lib/docker/overlay2/68bbf585f12fc79d185e70cbc8531069072af3c73407f14575686a2128f9a3f9/diff",
            "WorkDir": "/var/lib/docker/overlay2/68bbf585f12fc79d185e70cbc8531069072af3c73407f14575686a2128f9a3f9/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:4ee24d31e3b510a4dc91c3408ee6fb4bde69e635240330748465f87c2c25b289",
            "sha256:2ab6879e132e377901adad15e211796004a410c0cc0f95abda9d358bcdbd3766",
            "sha256:c3de76e6cac4e85b67f75ae0dac288a3dd790bbfb5fb16a8821a618af0521310",
            "sha256:ec75b91f6896e09378290df0f78b89124c7797fa11d4ab29103d8ac3f57fe53e"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-12-12T10:30:34.426182967+08:00"
    }
}

更多版本

docker.io/collabora/code:24.04.6.1.1

linux/arm64 docker.io1.34GB2024-08-15 18:02
838

docker.io/collabora/code:24.04.6.1.1

linux/amd64 docker.io1.42GB2024-08-15 18:36
765

docker.io/collabora/code:24.04.9.1.1

linux/amd64 docker.io1.43GB2024-11-09 16:13
792

docker.io/collabora/code:latest

linux/amd64 docker.io1.44GB2025-06-23 11:39
859

docker.io/collabora/code:25.04.4.1.1

linux/amd64 docker.io1.44GB2025-07-24 14:57
472

docker.io/collabora/code:latest

linux/arm64 docker.io1.37GB2025-12-12 10:31
335

docker.io/collabora/code:25.04.9.2.1

linux/amd64 docker.io1.46GB2026-03-18 18:14
256
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×