docker.elastic.co/beats/filebeat:9.4.1 linux/amd64

docker.elastic.co/beats/filebeat:9.4.1 - 国内下载镜像源 浏览次数:8 安全受验证的发布者-Elastic
Filebeat 是 Elasticsearch 的 Beats 项目的一部分,用于收集和发送日志文件到 Elastic Stack 中。它可以从多种日志文件源(例如 Apache、Nginx、MySQL 等)中收集日志,并将其转换为 Elasticsearch 可以处理的格式。Filebeat 提供了灵活的配置选项,可以根据实际情况自定义日志采集和发送行为。
源镜像 docker.elastic.co/beats/filebeat:9.4.1
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1
镜像ID sha256:4acb7df12199cd807d5b7739b12c53c22120defeac9f7d771e10b29d84953fec
镜像TAG 9.4.1
大小 430.81MB
镜像源 docker.elastic.co
CMD --environment container
启动入口 /usr/bin/tini -- /usr/local/bin/docker-entrypoint
工作目录 /usr/share/filebeat
OS/平台 linux/amd64
浏览量 8 次
贡献者
镜像创建 2026-05-08T00:27:35.93177892Z
同步时间 2026-06-01 19:12
环境变量
PATH=/usr/share/filebeat:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin container=oci ELASTIC_CONTAINER=true GODEBUG=madvdontneed=1 LIBBEAT_MONITORING_CGROUPS_HIERARCHY_OVERRIDE=/
镜像标签
x86_64: architecture 2026-05-06T12:56:03Z: build-date ubi9-minimal-container: com.redhat.component https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI: com.redhat.license_terms cpe:/a:redhat:enterprise_linux:9::appstream: cpe Filebeat sends log files to Logstash or directly to Elasticsearch.: description public: distribution-scope 1.42.2: io.buildah.version Filebeat sends log files to Logstash or directly to Elasticsearch.: io.k8s.description Filebeat image: io.k8s.display-name : io.openshift.expose-services minimal rhel9: io.openshift.tags Elastic License: license infra@elastic.co: maintainer filebeat: name 2026-05-08T00:20:51Z: org.label-schema.build-date Elastic License: org.label-schema.license filebeat: org.label-schema.name 1.0: org.label-schema.schema-version https://www.elastic.co/beats/filebeat: org.label-schema.url 471eefbca30a79d543af5106d039bf610a5c3281: org.label-schema.vcs-ref github.com/elastic/beats/v7: org.label-schema.vcs-url Elastic: org.label-schema.vendor 9.4.1: org.label-schema.version infra@elastic.co: org.opencontainers.image.authors 2026-05-08T00:20:51Z: org.opencontainers.image.created Elastic License: org.opencontainers.image.licenses 8def05a6f0dfabdc25ea20a79b0d11f8f9b12c5c: org.opencontainers.image.revision Filebeat: org.opencontainers.image.title Elastic: org.opencontainers.image.vendor 1: release filebeat: summary https://www.elastic.co/beats/filebeat: url 8def05a6f0dfabdc25ea20a79b0d11f8f9b12c5c: vcs-ref git: vcs-type Elastic: vendor 9.4.1: version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1  docker.elastic.co/beats/filebeat:9.4.1

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1  docker.elastic.co/beats/filebeat:9.4.1

Shell快速替换命令

sed -i 's#docker.elastic.co/beats/filebeat:9.4.1#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1  docker.elastic.co/beats/filebeat:9.4.1'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1  docker.elastic.co/beats/filebeat:9.4.1'

镜像构建历史


# 2026-05-08 08:27:35  0.00B 设置默认要执行的命令
CMD ["--environment" "container"]
                        
# 2026-05-08 08:27:35  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/usr/bin/tini" "--" "/usr/local/bin/docker-entrypoint"]
                        
# 2026-05-08 08:27:35  0.00B 设置工作目录为/usr/share/filebeat
WORKDIR /usr/share/filebeat
                        
# 2026-05-08 08:27:35  0.00B 设置环境变量 LIBBEAT_MONITORING_CGROUPS_HIERARCHY_OVERRIDE
ENV LIBBEAT_MONITORING_CGROUPS_HIERARCHY_OVERRIDE=/
                        
# 2026-05-08 08:27:35  0.00B 指定运行容器时使用的用户
USER 1000
                        
# 2026-05-08 08:27:35  56.05MB 执行命令并创建新的镜像层
RUN /bin/sh -c for iter in {1..10}; do             microdnf -y update &&             microdnf -y install systemd &&             microdnf clean all &&             exit_code=0 && break || exit_code=$? && echo "microdnf error: retry $iter in 10s" && sleep 10;         done;         (exit $exit_code) # buildkit
                        
# 2026-05-08 08:27:29  2.88KB 执行命令并创建新的镜像层
RUN /bin/sh -c useradd -M --uid 1000 --gid 1000 --groups 0 --home /usr/share/filebeat filebeat # buildkit
                        
# 2026-05-08 08:27:29  954.00B 执行命令并创建新的镜像层
RUN /bin/sh -c groupadd --gid 1000 filebeat # buildkit
                        
# 2026-05-08 08:27:29  4.95MB 复制新文件或目录到容器中
COPY /usr/share/filebeat/NOTICE.txt /licenses # buildkit
                        
# 2026-05-08 08:27:28  13.68KB 复制新文件或目录到容器中
COPY /usr/share/filebeat/LICENSE.txt /licenses # buildkit
                        
# 2026-05-08 08:27:28  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /licenses # buildkit
                        
# 2026-05-08 08:27:28  264.39MB 复制新文件或目录到容器中
COPY /usr/share/filebeat /usr/share/filebeat # buildkit
                        
# 2026-05-08 08:27:16  716.00B 执行命令并创建新的镜像层
RUN /bin/sh -c chmod 755 /usr/local/bin/docker-entrypoint # buildkit
                        
# 2026-05-08 08:27:14  716.00B 复制新文件或目录到容器中
COPY docker-entrypoint /usr/local/bin/docker-entrypoint # buildkit
                        
# 2026-05-08 08:27:14  24.06KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -e ;   TINI_BIN="";   TINI_SHA256="";   TINI_VERSION="v0.19.0";   echo "The arch value is $(arch)";   case "$(arch)" in     x86_64)         TINI_BIN="tini-amd64";         TINI_SHA256="93dcc18adc78c65a028a84799ecf8ad40c936fdfc5f2a57b1acda5a8117fa82c";         ;;     aarch64)         TINI_BIN="tini-arm64";         TINI_SHA256="07952557df20bfd2a95f9bef198b445e006171969499a1d361bd9e6f8e5e0e81";         ;;     *)         echo >&2 ; echo >&2 "Unsupported architecture \$(arch)" ; echo >&2 ; exit 1 ;         ;;   esac ;   curl --retry 8 -S -L -O "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/${TINI_BIN}" ;   echo "${TINI_SHA256} ${TINI_BIN}" | sha256sum -c - ;   mv "${TINI_BIN}" /usr/bin/tini ;   chmod +x /usr/bin/tini # buildkit
                        
# 2026-05-08 08:27:14  0.00B 设置环境变量 GODEBUG
ENV GODEBUG=madvdontneed=1
                        
# 2026-05-08 08:27:14  0.00B 设置环境变量 PATH
ENV PATH=/usr/share/filebeat:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2026-05-08 08:27:14  0.00B 设置环境变量 ELASTIC_CONTAINER
ENV ELASTIC_CONTAINER=true
                        
# 2026-05-08 08:27:14  0.00B 添加元数据标签
LABEL org.label-schema.build-date=2026-05-08T00:20:51Z org.label-schema.schema-version=1.0 org.label-schema.vendor=Elastic org.label-schema.license=Elastic License org.label-schema.name=filebeat org.label-schema.version=9.4.1 org.label-schema.url=https://www.elastic.co/beats/filebeat org.label-schema.vcs-url=github.com/elastic/beats/v7 org.label-schema.vcs-ref=471eefbca30a79d543af5106d039bf610a5c3281 io.k8s.description=Filebeat sends log files to Logstash or directly to Elasticsearch. io.k8s.display-name=Filebeat image org.opencontainers.image.created=2026-05-08T00:20:51Z org.opencontainers.image.licenses=Elastic License org.opencontainers.image.title=Filebeat org.opencontainers.image.vendor=Elastic org.opencontainers.image.authors=infra@elastic.co maintainer=infra@elastic.co name=filebeat vendor=Elastic version=9.4.1 release=1 url=https://www.elastic.co/beats/filebeat summary=filebeat license=Elastic License description=Filebeat sends log files to Logstash or directly to Elasticsearch.
                        
# 2026-05-06 20:56:15  105.38MB 
/bin/sh -c #(nop) LABEL "architecture"="x86_64" "vcs-type"="git" "vcs-ref"="8def05a6f0dfabdc25ea20a79b0d11f8f9b12c5c" "org.opencontainers.image.revision"="8def05a6f0dfabdc25ea20a79b0d11f8f9b12c5c" "build-date"="2026-05-06T12:56:03Z" "org.opencontainers.image.created"="2026-05-06T12:56:03Z" "release"="1778072020"org.opencontainers.image.revision=8def05a6f0dfabdc25ea20a79b0d11f8f9b12c5c,org.opencontainers.image.created=2026-05-06T12:56:03Z
                        
# 2026-05-06 20:56:15  0.00B 
/bin/sh -c #(nop) COPY file:9d5fe0edb9a65123afda28f8a8cf6e139537dee71d7b2bc90f9c46d89a207386 in /root/buildinfo/labels.json      
                        
# 2026-05-06 20:56:15  0.00B 
/bin/sh -c #(nop) COPY file:9d5fe0edb9a65123afda28f8a8cf6e139537dee71d7b2bc90f9c46d89a207386 in /usr/share/buildinfo/labels.json      
                        
# 2026-05-06 20:56:15  0.00B 
/bin/sh -c #(nop) COPY file:93583a9ebbaeff1e36b48820b647eea1eef523f6627dacfb0b21af79f5a41b35 in /root/buildinfo/content_manifests/content-sets.json      
                        
# 2026-05-06 20:56:15  0.00B 
/bin/sh -c #(nop) COPY file:93583a9ebbaeff1e36b48820b647eea1eef523f6627dacfb0b21af79f5a41b35 in /usr/share/buildinfo/content-sets.json      
                        
# 2026-05-06 20:56:15  0.00B 
/bin/sh -c #(nop) CMD ["/bin/bash"]
                        
# 2026-05-06 20:56:15  0.00B 
/bin/sh -c #(nop) COPY file:1376702515d596f414e3aa494e0daa6d408a6d2475c4aeca96bf9392f5287f69 in /etc/yum.repos.d/.      
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) COPY dir:4c4996e917f33023b976824d7cb68c72b897d6d36b90e718143d5c6b6644b5f2 in /      
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) ENV container oci
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.tags="minimal rhel9"
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL io.openshift.expose-services=""
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL io.k8s.display-name="Red Hat Universal Base Image 9 Minimal"
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL io.k8s.description="The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly."
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL description="The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly."
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL summary="Provides the latest release of the minimal Red Hat Universal Base Image 9."
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.license_terms="https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI"
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL com.redhat.component="ubi9-minimal-container"       name="ubi9/ubi-minimal"       version="9.7"       cpe="cpe:/a:redhat:enterprise_linux:9::appstream"       distribution-scope="public"
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL url="https://catalog.redhat.com/en/search?searchType=containers"
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL vendor="Red Hat, Inc."
                        
# 2026-05-06 20:56:14  0.00B 
/bin/sh -c #(nop) LABEL maintainer="Red Hat, Inc."
                        
                    

镜像信息

{
    "Id": "sha256:4acb7df12199cd807d5b7739b12c53c22120defeac9f7d771e10b29d84953fec",
    "RepoTags": [
        "docker.elastic.co/beats/filebeat:9.4.1",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat:9.4.1"
    ],
    "RepoDigests": [
        "docker.elastic.co/beats/filebeat@sha256:83ff422d491b68bd997ddb70718d30ab8d85b77a26f2ce8ec04daa88f27faaf7",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.elastic.co/beats/filebeat@sha256:149184db98c845991371659668ceae1484716bdce25f774c24484dd8548b20f9"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-05-08T00:27:35.93177892Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "1000",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/share/filebeat:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "container=oci",
            "ELASTIC_CONTAINER=true",
            "GODEBUG=madvdontneed=1",
            "LIBBEAT_MONITORING_CGROUPS_HIERARCHY_OVERRIDE=/"
        ],
        "Cmd": [
            "--environment",
            "container"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/usr/share/filebeat",
        "Entrypoint": [
            "/usr/bin/tini",
            "--",
            "/usr/local/bin/docker-entrypoint"
        ],
        "OnBuild": null,
        "Labels": {
            "architecture": "x86_64",
            "build-date": "2026-05-06T12:56:03Z",
            "com.redhat.component": "ubi9-minimal-container",
            "com.redhat.license_terms": "https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI",
            "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream",
            "description": "Filebeat sends log files to Logstash or directly to Elasticsearch.",
            "distribution-scope": "public",
            "io.buildah.version": "1.42.2",
            "io.k8s.description": "Filebeat sends log files to Logstash or directly to Elasticsearch.",
            "io.k8s.display-name": "Filebeat image",
            "io.openshift.expose-services": "",
            "io.openshift.tags": "minimal rhel9",
            "license": "Elastic License",
            "maintainer": "infra@elastic.co",
            "name": "filebeat",
            "org.label-schema.build-date": "2026-05-08T00:20:51Z",
            "org.label-schema.license": "Elastic License",
            "org.label-schema.name": "filebeat",
            "org.label-schema.schema-version": "1.0",
            "org.label-schema.url": "https://www.elastic.co/beats/filebeat",
            "org.label-schema.vcs-ref": "471eefbca30a79d543af5106d039bf610a5c3281",
            "org.label-schema.vcs-url": "github.com/elastic/beats/v7",
            "org.label-schema.vendor": "Elastic",
            "org.label-schema.version": "9.4.1",
            "org.opencontainers.image.authors": "infra@elastic.co",
            "org.opencontainers.image.created": "2026-05-08T00:20:51Z",
            "org.opencontainers.image.licenses": "Elastic License",
            "org.opencontainers.image.revision": "8def05a6f0dfabdc25ea20a79b0d11f8f9b12c5c",
            "org.opencontainers.image.title": "Filebeat",
            "org.opencontainers.image.vendor": "Elastic",
            "release": "1",
            "summary": "filebeat",
            "url": "https://www.elastic.co/beats/filebeat",
            "vcs-ref": "8def05a6f0dfabdc25ea20a79b0d11f8f9b12c5c",
            "vcs-type": "git",
            "vendor": "Elastic",
            "version": "9.4.1"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 430807143,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/aefbc2c42c256fe3b773c56c61667ae582523f7ed5e9e81991f826e840fe409d/diff:/var/lib/docker/overlay2/93f73d38c5c70e0f07f893a5d4aafcbcacd966f96c64400ed1121b021a499dda/diff:/var/lib/docker/overlay2/ca544e07c251ca46229cc3ef5dbe11bb42c72e7e616a2a42a20fa22aaa178fc5/diff:/var/lib/docker/overlay2/a9011a447a140e91a83e3f7b304c8f76d6d0bd4a2e4862ef7f1ba09f003b3ebd/diff:/var/lib/docker/overlay2/2346c7192513b3d8adfbbf2f78ee038ac8beb1b9f56429a87a4bbbbab676147e/diff:/var/lib/docker/overlay2/dfec3996978c7e673d41f6375ac98513c435d400089c4fa640da3f7ad8c6ff01/diff:/var/lib/docker/overlay2/b09b05619182814f842d8241a40c3f85bada87da305086bca2385fe2918c206a/diff:/var/lib/docker/overlay2/4f114d0c10c68d057f2d3ab942813b33a38cf14111e663c2ae2c73744c06878a/diff:/var/lib/docker/overlay2/f8b028fd9a215350e260ab4cb86409cc7ade155c042b9d8377a92b26e8a89bc2/diff:/var/lib/docker/overlay2/672ecc1db5e44417e58b5bda326c86c7ff80e30c46f7a4b19786a9d854af7ec5/diff:/var/lib/docker/overlay2/8db19208f6957b70faac6591d55fc2a8c2203ac1d7030f89a7dabcfd3256c90c/diff",
            "MergedDir": "/var/lib/docker/overlay2/5ad20af8c4cc6f2f0a6a16e9991b14a797dcc881600addafdce6bb05afa5a68d/merged",
            "UpperDir": "/var/lib/docker/overlay2/5ad20af8c4cc6f2f0a6a16e9991b14a797dcc881600addafdce6bb05afa5a68d/diff",
            "WorkDir": "/var/lib/docker/overlay2/5ad20af8c4cc6f2f0a6a16e9991b14a797dcc881600addafdce6bb05afa5a68d/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:ea4a52d7a4b80227c69b4071e67f250e561b6798a501520cd078425fcc119716",
            "sha256:02c449909844f50b2a8a986af5f807f7b435f4a599247511ca84ab774b053688",
            "sha256:4b85e5a2ea95cba6c798553523daec2dad8490650fbd386594fb408e8609d15c",
            "sha256:91948ea5088d459b46649f374c8a4e197fa1b83916cd01dfa35d347499e34c64",
            "sha256:33d510e62eb1a62785ee9c76e45b368aa2f9768865bbc21fa00bb6922bd018b3",
            "sha256:2832ce0f5f8d76510b3e736a890e86163a4790c9ba4be8df43a9970cc60b71f0",
            "sha256:38266facb68bf647baf91cbe8f2b7152ece61a145380305ec4e2a1c5303f5e8a",
            "sha256:4c5dc8516b03c602e6d46f80fdaa12b7524c9391c085178beedc8ff9fe84a49b",
            "sha256:75225f4b041c4419191870495eae0fef345cd85f0ffeef61f4bf76244a9f426d",
            "sha256:60385e323b230223617c64e3bfc47b0ae42c8f11a8799c883e5b0674df6b7611",
            "sha256:6128277337d4c5dffeb0bc0353f24a1533ade91f3c17557a10a57a5d8717a933",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-06-01T19:12:33.006463339+08:00"
    }
}

更多版本

docker.elastic.co/beats/filebeat:8.12.2

linux/amd64 docker.elastic.co324.59MB2024-03-26 11:46
1248

docker.elastic.co/beats/filebeat:8.13.0-amd64

linux/amd64 docker.elastic.co330.89MB2024-03-26 18:34
924

docker.elastic.co/beats/filebeat:7.17.2

linux/amd64 docker.elastic.co270.97MB2024-07-15 14:10
924

docker.io/docker.elastic.co/beats/filebeat:7.17.2

linux/amd64 docker.io270.99MB2024-08-01 17:16
882

docker.io/docker.elastic.co/beats/filebeat:7.17.12

linux/amd64 docker.io268.85MB2024-08-01 17:18
642

docker.elastic.co/beats/filebeat:7.6.2

linux/amd64 docker.elastic.co363.66MB2024-10-02 18:18
747

docker.io/docker.elastic.co/beats/filebeat:7.17.3

linux/amd64 docker.io271.31MB2024-10-31 13:30
750

docker.elastic.co/beats/filebeat:8.14.3

linux/amd64 docker.elastic.co327.88MB2024-12-16 11:44
743

docker.elastic.co/beats/filebeat:8.4.3

linux/amd64 docker.elastic.co405.85MB2025-01-22 13:15
609

docker.elastic.co/beats/filebeat:7.17.27

linux/amd64 docker.elastic.co285.59MB2025-01-22 15:24
2916

docker.io/docker.elastic.co/beats/filebeat:8.13.3

linux/amd64 docker.io331.66MB2025-02-28 13:40
385

docker.io/docker.elastic.co/beats/filebeat:8.15.3

linux/amd64 docker.io348.32MB2025-02-28 13:43
419

docker.elastic.co/beats/filebeat:7.16.2

linux/amd64 docker.elastic.co508.34MB2025-03-18 23:09
413

docker.elastic.co/beats/filebeat:7.17.3

linux/amd64 docker.elastic.co271.31MB2025-03-23 11:15
549

docker.elastic.co/beats/filebeat:7.12.1

linux/amd64 docker.elastic.co461.08MB2025-04-03 09:59
434

docker.elastic.co/beats/filebeat:8.17.4

linux/amd64 docker.elastic.co355.60MB2025-04-08 10:03
410

docker.elastic.co/beats/filebeat:8.17.2

linux/amd64 docker.elastic.co355.11MB2025-04-08 12:42
484

docker.elastic.co/beats/filebeat:7.10.2

linux/amd64 docker.elastic.co430.32MB2025-05-10 17:10
571

docker.elastic.co/beats/filebeat:8.5.1

linux/amd64 docker.elastic.co393.86MB2025-05-13 21:51
517

docker.elastic.co/beats/filebeat:7.17.28

linux/amd64 docker.elastic.co286.01MB2025-05-15 16:09
451

docker.elastic.co/beats/filebeat:8.13.4

linux/amd64 docker.elastic.co331.67MB2025-07-15 12:14
373

docker.elastic.co/beats/filebeat:8.7.0

linux/amd64 docker.elastic.co291.25MB2025-07-21 15:22
484

docker.elastic.co/beats/filebeat:7.9.0

linux/amd64 docker.elastic.co451.21MB2025-07-24 12:16
314

docker.elastic.co/beats/filebeat:8.17.3

linux/amd64 docker.elastic.co355.46MB2025-07-25 00:03
305

docker.elastic.co/beats/filebeat:8.8.0

linux/arm64 docker.elastic.co268.02MB2025-08-22 08:07
414

docker.elastic.co/beats/filebeat:8.15.2

linux/amd64 docker.elastic.co348.19MB2025-09-16 17:39
381

docker.elastic.co/beats/filebeat:9.1.4

linux/amd64 docker.elastic.co414.38MB2025-09-29 14:56
302

docker.elastic.co/beats/filebeat:9.2.0

linux/amd64 docker.elastic.co416.83MB2025-11-03 22:03
294

docker.elastic.co/beats/filebeat:8.19.7

linux/amd64 docker.elastic.co428.00MB2025-12-03 10:43
277

docker.elastic.co/beats/filebeat:8.12.0

linux/arm64 docker.elastic.co293.28MB2025-12-24 12:59
239

docker.elastic.co/beats/filebeat:9.2.3

linux/amd64 docker.elastic.co429.76MB2026-01-13 22:49
245

docker.elastic.co/beats/filebeat-oss:7.10.2

linux/amd64 docker.elastic.co380.62MB2026-01-15 15:46
241

docker.elastic.co/beats/filebeat:9.2.4

linux/amd64 docker.elastic.co431.08MB2026-02-06 13:56
206

docker.elastic.co/beats/filebeat:9.3.0

linux/amd64 docker.elastic.co438.42MB2026-02-09 11:10
224

docker.elastic.co/beats/filebeat:9.3.1

linux/amd64 docker.elastic.co429.09MB2026-03-05 16:23
182

docker.elastic.co/beats/filebeat-oss:8.14.1

linux/amd64 docker.elastic.co256.71MB2026-03-05 16:24
172

docker.elastic.co/beats/filebeat:8.19.12

linux/amd64 docker.elastic.co445.17MB2026-03-05 16:27
158

docker.elastic.co/beats/filebeat-oss:9.3.1

linux/amd64 docker.elastic.co318.60MB2026-03-05 16:30
157

docker.elastic.co/beats/filebeat:8.19.14

linux/amd64 docker.elastic.co441.49MB2026-04-26 11:50
98

docker.elastic.co/beats/filebeat:9.4.1

linux/amd64 docker.elastic.co430.81MB2026-06-01 19:12
7