docker.io/collabora/code:latest linux/arm64

docker.io/collabora/code:latest - 国内下载镜像源 浏览次数:11

温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像

温馨提示: 这是一个 linux/arm64 系统架构镜像

Collabora Code

Code editor powered by LibreOffice

源镜像 docker.io/collabora/code:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/collabora/code:latest-linuxarm64
镜像ID sha256:901d42602b7bda898b3557d29ff22f6974431de340a35b0a14e84e9428e6028d
镜像TAG latest-linuxarm64
大小 1.37GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /start-collabora-online.sh
工作目录
OS/平台 linux/arm64
浏览量 11 次
贡献者
镜像创建 2025-11-28T14:52:22.048061518Z
同步时间 2025-12-12 10:31
更新时间 2025-12-12 13:27
开放端口
9980/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin LC_CTYPE=C.UTF-8
镜像标签
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
437

docker.io/collabora/code:24.04.6.1.1

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

docker.io/collabora/code:24.04.9.1.1

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

docker.io/collabora/code:latest

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

docker.io/collabora/code:25.04.4.1.1

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

docker.io/collabora/code:latest

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