docker.io/apache/doris:be-3.1.4 linux/arm64

docker.io/apache/doris:be-3.1.4 - 国内下载镜像源 浏览次数:9 阿白 贡献同步 安全受验证的发布者-apache 温馨提示: 这是一个 linux/arm64 系统架构镜像
Apache Doris 是一个分布式列存储数据库,旨在解决大规模数据分析和处理的问题。以下是这个镜像的描述:

镜像名称:docker.io/apache/doris

镜像描述: Apache Doris 是一个分布式列存储数据库,旨在解决大规模数据分析和处理的问题。

源镜像 docker.io/apache/doris:be-3.1.4
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64
镜像ID sha256:45e70c1553ddda75341fd9f4c4c42b5c31ce81ffa0d02e7d7bd28133cbf67e4f
镜像TAG be-3.1.4-linuxarm64
大小 5.97GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 bash entry_point.sh
工作目录 /opt/apache-doris
OS/平台 linux/arm64
浏览量 9 次
贡献者
avatar
阿白
镜像创建 2026-01-30T07:10:02.006672039Z
同步时间 2026-03-07 02:47
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/jvm/java/bin:/opt/apache-doris/be/bin JAVA_HOME=/usr/lib/jvm/java
镜像标签
ubuntu: org.opencontainers.image.ref.name 22.04: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64  docker.io/apache/doris:be-3.1.4

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64  docker.io/apache/doris:be-3.1.4

Shell快速替换命令

sed -i 's#apache/doris:be-3.1.4#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64  docker.io/apache/doris:be-3.1.4'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64  docker.io/apache/doris:be-3.1.4'

镜像构建历史


# 2026-01-30 15:10:02  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["bash" "entry_point.sh"]
                        
# 2026-01-30 15:10:02  0.00B 设置工作目录为/opt/apache-doris
WORKDIR /opt/apache-doris
                        
# 2026-01-30 15:10:01  5.82KB 复制新文件或目录到容器中
COPY resource/init_be.sh /usr/local/bin/ # buildkit
                        
# 2026-01-30 15:10:01  7.47KB 复制新文件或目录到容器中
COPY resource/entry_point.sh /usr/local/bin/ # buildkit
                        
# 2026-01-30 15:10:01  45.00KB 复制新文件或目录到容器中
COPY resource/be_*.sh /opt/apache-doris/ # buildkit
                        
# 2026-01-30 15:10:01  4.68GB 复制新文件或目录到容器中
COPY resource/arm64/apache-doris-3.1.4-bin-*/be /opt/apache-doris/be # buildkit
                        
# 2026-01-29 22:11:54  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/jvm/java/bin:/opt/apache-doris/be/bin
                        
# 2026-01-29 22:11:54  0.00B 设置环境变量 JAVA_HOME
ENV JAVA_HOME=/usr/lib/jvm/java
                        
# 2026-01-29 22:11:54  19.00B 执行命令并创建新的镜像层
RUN |2 TARGETARCH=arm64 DORIS_VERSION=3.1.4 /bin/sh -c if echo $DORIS_VERSION | grep -E '^([3-9]|([1-9]([0-9])))|^branch\-([3-9]|([1-9]([0-9])))|master.*' >>/dev/null ; then         ln -s /usr/lib/jvm/jdk-17 /usr/lib/jvm/java &&         rm -rf /usr/lib/jvm/jdk-8;     else         ln -s /usr/lib/jvm/jdk-8 /usr/lib/jvm/java &&         rm -rf /usr/lib/jvm/jdk-17;     fi; # buildkit
                        
# 2026-01-29 22:11:54  0.00B 定义构建参数
ARG DORIS_VERSION=3.1.4
                        
# 2026-01-29 22:11:54  0.00B 定义构建参数
ARG TARGETARCH=arm64
                        
# 2025-12-23 11:26:23  0.00B 设置工作目录为/opt/apache-doris
WORKDIR /opt/apache-doris
                        
# 2025-12-23 11:26:23  10.66MB 复制新文件或目录到容器中
COPY /dorisctl /opt/apache-doris/ # buildkit
                        
# 2025-12-23 11:26:23  51.66MB 复制新文件或目录到容器中
COPY /doris-debug /opt/apache-doris/ # buildkit
                        
# 2025-12-23 11:26:22  234.03MB 复制新文件或目录到容器中
COPY /usr/lib/jvm/jdk-8 /usr/lib/jvm/jdk-8 # buildkit
                        
# 2025-12-23 11:26:21  338.57MB 复制新文件或目录到容器中
COPY /usr/lib/jvm/jdk-17 /usr/lib/jvm/jdk-17 # buildkit
                        
# 2025-12-23 11:26:19  590.34MB 执行命令并创建新的镜像层
RUN |1 TARGETARCH=arm64 /bin/sh -c sed -i -e 's/^APT/# APT/' -e 's/^DPkg/# DPkg/' /etc/apt/apt.conf.d/docker-clean &&     apt-get update -y &&  DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends     patchelf gdb binutils binutils-common mysql-client iperf3     curl wget less vim htop iproute2 numactl jq iotop sysstat     tcpdump iputils-ping dnsutils strace lsof blktrace tzdata     bpfcc-tools linux-headers-realtime linux-tools-realtime silversearcher-ag     google-perftools libperl-dev python2-dev     net-tools ca-certificates openssl && apt-get clean && rm -rf /var/lib/apt/lists/* && mkdir -p /usr/lib/jvm/ &&     ln -sf /usr/lib/linux-tools/`ls /usr/lib/linux-tools/`/perf /usr/bin/perf &&    ln -s /usr/bin/google-pprof /usr/bin/pprof; # buildkit
                        
# 2025-12-23 11:26:19  0.00B 定义构建参数
ARG TARGETARCH=arm64
                        
# 2025-10-14 01:25:18  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2025-10-14 01:25:18  69.35MB 
/bin/sh -c #(nop) ADD file:2e0e653363da35febc0204e69cb713c0d1497720522f79d3d531980a7f291a39 in / 
                        
# 2025-10-14 01:25:16  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=22.04
                        
# 2025-10-14 01:25:16  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2025-10-14 01:25:16  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2025-10-14 01:25:16  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:45e70c1553ddda75341fd9f4c4c42b5c31ce81ffa0d02e7d7bd28133cbf67e4f",
    "RepoTags": [
        "apache/doris:be-3.1.4",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris:be-3.1.4-linuxarm64"
    ],
    "RepoDigests": [
        "apache/doris@sha256:21cd6cdf39dfab5c08f21cc695c2d7541325273ee61ec0a8ab108b553e26925e",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/apache/doris@sha256:f12bed1a37c4ba1e8986ea06e73e7ad4f92a80f0442c3ce9da2aa1e7b0d54519"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-01-30T07:10:02.006672039Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/jvm/java/bin:/opt/apache-doris/be/bin",
            "JAVA_HOME=/usr/lib/jvm/java"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/opt/apache-doris",
        "Entrypoint": [
            "bash",
            "entry_point.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.ref.name": "ubuntu",
            "org.opencontainers.image.version": "22.04"
        }
    },
    "Architecture": "arm64",
    "Os": "linux",
    "Size": 5971144598,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/dc10f5b1f6c868056d3ae3a85a4f954920462499af2ad93e87792fee4a2b6776/diff:/var/lib/docker/overlay2/8e2f1d4b20877f56c4b02f38cc6d395c6be4a380da27a72c636867f673380051/diff:/var/lib/docker/overlay2/5b1979dc0688b333367877c400eb50868b7e0256cc2a8422088213b6eb25e7ee/diff:/var/lib/docker/overlay2/745b3e81098a4b0a9a37f38a2beb42b10cfe3a046609aa2b559c982703d64988/diff:/var/lib/docker/overlay2/11ceb40b160eb5dd672765d4596aa1513775733e389cc87a5899c1c7b79757bc/diff:/var/lib/docker/overlay2/049b5e1dd415bb89292db2ffe8b52e7c662c2fd1ff5fd7cf0961c56ec403602b/diff:/var/lib/docker/overlay2/38ea983cc50301b720dffe9b3abeacc5c5d20ff7c8a50ccf0bb471b3d95f2257/diff:/var/lib/docker/overlay2/90908b75ed3dede69f58324a2ffb3f62d34e199239e39a49949cad40f1bce590/diff:/var/lib/docker/overlay2/c47e8da9c1839799e56b6f44b7de68c69cf5c2759cbd40359105969a15a8e5cb/diff:/var/lib/docker/overlay2/690d5a9fe7a6e7b7ce09999976aa62b5f08dce0a82da6757a1b09f010ab3aae2/diff:/var/lib/docker/overlay2/c3f062ba2a906a2f362f0b9a456210ba9e5003c51af669a347396ceea8ab762c/diff:/var/lib/docker/overlay2/4df11f2f9ceb5205dd3570dd776d8412cbc5913261941f6c82cfdd516f6195b4/diff",
            "MergedDir": "/var/lib/docker/overlay2/182cf884d0c6959dc662a5551e92bc6e628ab4f8b6e61e0580a2b2271ece1b1d/merged",
            "UpperDir": "/var/lib/docker/overlay2/182cf884d0c6959dc662a5551e92bc6e628ab4f8b6e61e0580a2b2271ece1b1d/diff",
            "WorkDir": "/var/lib/docker/overlay2/182cf884d0c6959dc662a5551e92bc6e628ab4f8b6e61e0580a2b2271ece1b1d/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:b3f74c31dcaee85c6efbb1c8b30081ee1e7f2b11e841d4492217caa7d1681539",
            "sha256:8ecbadae504aa62820d22c7ab91b9440545660df730edd5e46a6eb037fa73352",
            "sha256:8234da94b13262491eb2aeb9668e429139025eb4e5217e03ebd5920a911a2dcd",
            "sha256:cace0ba7b1af42a6d263df8aa9c28c557c6db0dd9540f84ac627a0da2cb3eed8",
            "sha256:c6e9a5197a6b88a3c016ce394da269a674b388002cd7735fa1d52fc5941d0918",
            "sha256:4c80873af2d858c8467d97ce2824b686b48b17efffe9921fc90769d66b3abb40",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:5f85ccf9413ca106588107d566df1dbd5ed2e5a7c7b68ce73698f2dc3aaf813a",
            "sha256:b66e5bcdbd04297da0d43357c74282b3ce2052c197ec3accede362d0a116eec6",
            "sha256:1a2592810e7bdeb4ad943f7ad64e8cb3645c8711f95c941b7c341630d457c4f6",
            "sha256:adfd9a55f62f18745db4a8940c952cfa80efcb35a03d13f7ed44698b06a085f1",
            "sha256:b9b46f6b88032d0e2083b3d6f8e2e0798d1067164bb442d990d1d89c398bbfb0",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-03-07T02:42:18.480651497+08:00"
    }
}

更多版本

docker.io/apache/doris:1.2.1-fe-x86_64

linux/amd64 docker.io1.16GB2024-09-04 18:04
481

docker.io/apache/doris:1.2.1-be-x86_64

linux/amd64 docker.io4.04GB2024-09-04 18:09
507

docker.io/apache/doris:1.2.2-fe-x86_64

linux/amd64 docker.io1.06GB2024-09-05 11:15
603

docker.io/apache/doris:1.2.2-be-x86_64

linux/amd64 docker.io4.22GB2024-09-05 11:20
682

docker.io/apache/doris:1.2.2-be-x86_64-noavx2

linux/amd64 docker.io4.20GB2024-09-05 11:24
603

docker.io/apache/doris:build-env-ldb-toolchain-latest

linux/amd64 docker.io3.58GB2024-11-10 13:58
795

docker.io/apache/doris:doris-all-in-one-2.1.0

linux/amd64 docker.io7.09GB2024-11-10 14:13
1088

docker.io/apache/doris:2.0.0_alpha-fe-x86_64

linux/amd64 docker.io1.35GB2024-11-10 14:17
430

docker.io/apache/doris:2.0.0_alpha-be-x86_64

linux/amd64 docker.io5.50GB2024-11-10 14:25
454

docker.io/apache/doris:build-env-for-2.0

linux/amd64 docker.io3.44GB2024-11-11 17:31
683

docker.io/apache/doris:doris-fe-2.1.7

linux/amd64 docker.io1.99GB2024-12-18 16:59
737

docker.io/apache/doris:doris-be-2.1.7

linux/amd64 docker.io5.44GB2024-12-18 17:02
663

docker.io/apache/doris:fe-3.0.3

linux/amd64 docker.io2.24GB2025-02-08 14:55
502

docker.io/apache/doris:be-3.0.3

linux/amd64 docker.io6.06GB2025-02-09 00:40
791

docker.io/apache/doris:operator-25.3.0

linux/amd64 docker.io75.33MB2025-04-02 15:26
480

docker.io/apache/doris:broker-3.0.4

linux/amd64 docker.io1.78GB2025-04-02 15:31
329

docker.io/apache/doris:fe-3.0.4

linux/amd64 docker.io2.23GB2025-04-02 15:37
490

docker.io/apache/doris:ms-3.0.4

linux/amd64 docker.io1.53GB2025-04-02 15:39
459

docker.io/apache/doris:be-3.0.4

linux/amd64 docker.io6.39GB2025-04-03 03:13
516

docker.io/apache/doris:fe-3.0.4

linux/arm64 docker.io2.24GB2025-04-21 20:36
696

docker.io/apache/doris:be-3.0.4

linux/arm64 docker.io6.62GB2025-04-22 00:52
414

docker.io/apache/doris:fe-ubuntu-2.1.7

linux/amd64 docker.io1.99GB2025-05-20 14:44
270

docker.io/apache/doris:be-ubuntu-2.1.7

linux/amd64 docker.io5.44GB2025-05-20 14:52
332

docker.io/apache/doris:operator-25.5.1

linux/amd64 docker.io75.37MB2025-06-07 15:50
364

docker.io/apache/doris:operator-25.5.1

linux/arm64 docker.io73.68MB2025-06-07 15:52
230

docker.io/apache/doris:fe-3.0.6.1

linux/amd64 docker.io2.37GB2025-07-15 12:11
394

docker.io/apache/doris:be-2.1.7

linux/amd64 docker.io5.44GB2025-07-15 18:13
340

docker.io/apache/doris:fe-2.1.7

linux/amd64 docker.io1.99GB2025-07-15 18:19
322

docker.io/apache/doris:be-3.0.6.1

linux/amd64 docker.io6.73GB2025-07-16 01:35
233

docker.io/apache/doris:fe-2.1.10

linux/amd64 docker.io2.09GB2025-07-17 09:58
324

docker.io/apache/doris:be-2.1.10

linux/amd64 docker.io5.73GB2025-07-17 10:31
421

docker.io/apache/doris:fe-2.1.9

linux/amd64 docker.io1.99GB2025-09-02 01:50
396

docker.io/apache/doris:fe-2.1.8

linux/amd64 docker.io1.99GB2025-09-05 10:36
287

docker.io/apache/doris:be-2.1.8

linux/amd64 docker.io5.50GB2025-09-05 10:43
319

docker.io/apache/doris:build-env-for-2.0-no-avx2

linux/amd64 docker.io3.43GB2025-09-08 18:23
343

docker.io/apache/doris:be-2.1.9

linux/amd64 docker.io5.53GB2025-09-25 15:33
214

docker.io/apache/doris:fe-3.1.1

linux/amd64 docker.io2.26GB2025-11-19 20:20
199

docker.io/apache/doris:fe-3.1.1

linux/arm64 docker.io2.24GB2025-11-19 20:29
154

docker.io/apache/doris:be-3.1.1

linux/amd64 docker.io6.85GB2025-11-20 00:25
199

docker.io/apache/doris:be-3.1.1

linux/arm64 docker.io6.89GB2025-11-20 00:40
274

docker.io/apache/doris:fe-2.1.8.1

linux/amd64 docker.io1.99GB2025-12-03 10:14
134

docker.io/apache/doris:be-2.1.8.1

linux/amd64 docker.io5.50GB2025-12-03 10:22
143

docker.io/apache/doris:fe-2.1.11

linux/amd64 docker.io2.10GB2025-12-08 10:46
149

docker.io/apache/doris:be-2.1.11

linux/amd64 docker.io5.75GB2025-12-08 10:52
146

docker.io/apache/doris:operator-latest

linux/amd64 docker.io75.42MB2025-12-08 18:40
192

docker.io/apache/doris:fe-4.0.1

linux/amd64 docker.io2.19GB2025-12-08 20:12
188

docker.io/apache/doris:be-4.0.1

linux/amd64 docker.io5.51GB2025-12-09 00:13
183

docker.io/apache/doris:fe-3.1.0

linux/amd64 docker.io2.26GB2025-12-16 20:27
158

docker.io/apache/doris:be-3.1.0

linux/amd64 docker.io6.85GB2025-12-17 01:53
161

docker.io/apache/doris:fe-4.0.2

linux/amd64 docker.io2.13GB2025-12-26 21:51
212

docker.io/apache/doris:be-4.0.2

linux/amd64 docker.io5.29GB2025-12-27 01:22
198

docker.io/apache/doris:fe-3.1.3

linux/amd64 docker.io2.17GB2026-01-22 12:10
92

docker.io/apache/doris:ms-4.0.2

linux/amd64 docker.io1.51GB2026-01-22 23:16
114

docker.io/apache/doris:be-3.1.3

linux/amd64 docker.io6.51GB2026-01-23 02:43
99

docker.io/apache/doris:operator-25.8.0

linux/amd64 docker.io75.45MB2026-02-15 21:55
59

docker.io/apache/doris:operator-25.8.0

linux/arm64 docker.io73.72MB2026-02-15 21:57
53

docker.io/apache/doris:base-6.0

linux/arm64 docker.io1.29GB2026-03-01 09:28
39

docker.io/apache/doris:ms-4.0.2

linux/arm64 docker.io1.94GB2026-03-01 09:31
31

docker.io/apache/doris:be-3.1.4

linux/arm64 docker.io5.97GB2026-03-07 02:47
8