专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏

influxdb Docker 镜像 - 轩辕镜像

influxdb
library/influxdb
InfluxDB 是一款开源时序数据库,专为实时分析工作负载构建,其设计聚焦于高效处理海量时间序列数据,具备高写入吞吐量与快速查询响应能力,广泛适用于监控系统、日志分析、IoT 数据采集等场景,能够满足实时数据接入、存储与即时分析的核心需求,为各类实时业务提供可靠的数据支撑。
1986 收藏0 次下载activelibrary镜像
🚀专业版镜像服务,面向生产环境设计
版本下载
🚀专业版镜像服务,面向生产环境设计

Quick reference

  • Maintained by:
    InfluxData

  • Where to get help:
    InfluxDB *** Server (preferred for InfluxDB 3 Core, InfluxDB 3 Enterprise), InfluxDB Community Slack *(preferred for InfluxDB v2, v1)*

Supported tags and respective Dockerfile links

  • 1.12, 1.12.2

  • 1.12-alpine, 1.12.2-alpine

  • 1.12-data, 1.12.2-data, data

  • 1.12-data-alpine, 1.12.2-data-alpine, data-alpine

  • 1.12-meta, 1.12.2-meta, meta

  • 1.12-meta-alpine, 1.12.2-meta-alpine, meta-alpine

  • 1.11, 1.11.8

  • 1.11-alpine, 1.11.8-alpine

  • 1.11-data, 1.11.9-data

  • 1.11-data-alpine, 1.11.9-data-alpine

  • 1.11-meta, 1.11.9-meta

  • 1.11-meta-alpine, 1.11.9-meta-alpine

  • 2.7, 2.7.12

  • 2.7-alpine, 2.7.12-alpine

  • 2, 2.8, 2.8.0, latest

  • 2-alpine, 2.8-alpine, 2.8.0-alpine, alpine

  • 3-core, 3.8-core, 3.8.0-core, core

  • 3-enterprise, 3.8-enterprise, 3.8.0-enterprise, enterprise

Quick reference (cont.)

  • Where to file issues:
    [***]

  • Supported architectures: (more info)
    amd64, arm64v8

  • Published image artifact details:
    repo-info repo's repos/influxdb/ directory (history)
    (image metadata, transfer size, etc)

  • Image updates:
    official-images repo's library/influxdb label
    official-images repo's library/influxdb file (history)

  • Source of this description:
    docs repo's influxdb/ directory (history)

Notice

On February 3, 2026, the latest tag for InfluxDB will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your deployments.

What is InfluxDB?

!logo

InfluxDB is the time series database platform designed to collect, store, and process large amounts of event and time series data. Ideal for monitoring (sensors, servers, applications, networks), financial analytics, and behavioral tracking.

Start InfluxDB 3 Core

... via docker compose

Example compose.yaml for influxdb:

yaml
# compose.yaml
name: influxdb3
services:
  influxdb3-core:
    container_name: influxdb3-core
    image: influxdb:3-core
    ports:
      - 8181:8181
    command:
      - influxdb3
      - serve
      - --node-id=node0
      - --object-store=file
      - --data-dir=/var/lib/influxdb3/data
      - --plugin-dir=/var/lib/influxdb3/plugins
    volumes:
      - type: bind
        source: ~/.influxdb3/core/data
        target: /var/lib/influxdb3/data
      - type: bind
        source: ~/.influxdb3/core/plugins
        target: /var/lib/influxdb3/plugins

Alternatively, you can use the following command to start InfluxDB 3 Core:

bash
docker run --rm -p 8181:8181 \
  -v $PWD/data:/var/lib/influxdb3/data \
  -v $PWD/plugins:/var/lib/influxdb3/plugins \
  influxdb:3-core influxdb3 serve \
    --node-id=my-node-0 \
    --object-store=file \
    --data-dir=/var/lib/influxdb3/data \
    --plugin-dir=/var/lib/influxdb3/plugins

InfluxDB 3 Core starts with:

  • Data persistence at /var/lib/influxdb3/data
  • Python processing engine enabled with plugin directory
  • HTTP API listening on port 8181
Using InfluxDB 3 Core

After starting your InfluxDB 3 server, follow the Get Started guide to create an authorization token and start writing, querying, and processing data via the built-in influxdb3 CLI or the HTTP API.

Recommended tools for InfluxDB 3 Core

Use the following tools with InfluxDB 3 Core:

  • InfluxDB 3 Explorer UI: Visualize, query, and manage your data with the standalone web interface designed for InfluxDB 3. View on Docker Hub
  • Telegraf: Collect, transform, and send metrics from hundreds of sources directly to InfluxDB 3. View on Docker Hub
  • Official Client Libraries: Integrate InfluxDB 3 into your applications using supported libraries for Python, Go, JavaScript, and more.
Customize server options

Customize your instance with available server options:

bash
   docker run --rm influxdb:3-core influxdb3 serve --help

Available InfluxDB variants

  • influxdb:3-core - Latest InfluxDB OSS (InfluxDB 3 Core)
  • influxdb:2 - Previous generation OSS (InfluxDB v2)
  • influxdb:1.11 - InfluxDB v1
InfluxDB 3 Core (influxdb:3-core) - Latest OSS
  • Latest generation using object storage with the InfluxDB 3 storage engine, Apache Arrow, and DataFusion SQL
  • Sub-10ms queries and unlimited cardinality
  • Supports SQL and InfluxQL queries
  • Includes Python processing engine
  • Designed for real-time monitoring and recent data
  • Includes InfluxDB v1 and v2 compatibility APIs
InfluxDB v2 (influxdb:2)
  • Built on the TSM storage engine
  • Supports Flux query language
  • Integrated UI and dashboards
  • Includes v1 compatibility API that supports InfluxQL
InfluxDB v1 (influxdb:1.11)
  • Built on the TSM storage engine
  • Original version with InfluxQL query language
  • Proven stability for existing deployments
InfluxDB 3 Enterprise (license required) (influxdb:3-enterprise)

Adds unlimited data retention, compaction, clustering, and high availability to InfluxDB 3 Core.

For setup instructions, see the InfluxDB 3 Enterprise installation documentation.

InfluxDB v1 Enterprise (license required)
  • influxdb:1.11-data - Data nodes for clustering
  • influxdb:1.11-meta - Meta nodes for cluster coordination (port 8091)

For setup instructions, see the InfluxDB v1 Enterprise Docker documentation.

Version compatibility

Migration paths

To migrate from v1 or v2 to InfluxDB 3:

  1. Dual-write new data to v1/v2 and InfluxDB 3.
  2. Query historical data from v1/v2 and write it to InfluxDB 3. InfluxDB 3 Enterprise is recommended for historical query capability.

Using InfluxDB v2

InfluxDB v2 is a previous version. Consider InfluxDB 3 Core for new deployments.

Enter the following command to start InfluxDB v2 initialized with custom configuration:

bash
docker run -d -p 8086:8086 \
  -v $PWD/data:/var/lib/influxdb2 \
  -v $PWD/config:/etc/influxdb2 \
  -e DOCKER_INFLUXDB_INIT_MODE=setup \
  -e DOCKER_INFLUXDB_INIT_USERNAME=my-user \
  -e DOCKER_INFLUXDB_INIT_PASSWORD=my-password \
  -e DOCKER_INFLUXDB_INIT_ORG=my-org \
  -e DOCKER_INFLUXDB_INIT_BUCKET=my-bucket \
  influxdb:2

After the container starts, visit http://localhost:8086 to view the UI.

For detailed instructions, see the InfluxDB v2 Docker Compose documentation.

Using InfluxDB v1

InfluxDB v1 is a previous version. Consider InfluxDB 3 Core for new deployments.

bash
docker run -d -p 8086:8086 \
  -v $PWD:/var/lib/influxdb \
  influxdb:1.11

This starts InfluxDB v1 with:

  • HTTP API on port 8086
  • Data persisted to current directory

For more information, see the InfluxDB v1 Docker documentation. For v1 Enterprise installation, see the InfluxDB Enterprise v1 documentation.

Image Variants

The influxdb images come in many flavors, each designed for a specific use case.

influxdb:<version>

This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.

influxdb:<version>-alpine

This image is based on the popular Alpine Linux project, available in the alpine official image. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.

This variant is useful when final image size being as small as possible is your primary concern. The main caveat to note is that it does use musl libc instead of glibc and friends, so software will often run into issues depending on the depth of their libc requirements/assumptions. See this Hacker News comment thread for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.

To minimize image size, it's uncommon for additional related tools (such as git or bash) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the alpine image description for examples of how to install packages if you are unfamiliar).

License

View license information for the software contained in this image.

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

Some additional license information which was able to be auto-detected might be found in the repo-info repository's influxdb/ directory.

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Deployment & Usage Documentation

InfluxDB Docker 容器化部署指南

INFLUXDB是一个专为实时分析工作负载设计的开源时序数据库平台,旨在收集、存储和处理大量事件和时序数据。它特别适用于监控场景(如传感器、服务器、应用程序、网络)、金融分析和行为跟踪等领域。INFLUXDB支持高效的时序数据存储和查询,提供了灵活的数据模型和强大的查询语言,能够满足现代应用对时序数据处理的需求。

Read More
查看更多 influxdb 相关镜像 →
influxdb/influxdb logo
influxdb/influxdb
by influxdb
暂无描述
8500K+ pulls
上次更新:10 年前
bitnami/influxdb logo
bitnami/influxdb
by VMware
认证
Bitnami Secure Image for InfluxDB是一款针对时序数据库InfluxDB开发的安全镜像,它通过预配置安全加固措施、定期漏洞修复及系统组件优化,确保InfluxDB部署时即具备可靠的安全防护能力;同时集成Bitnami简化部署流程,支持快速安装与运行,适用于企业级时序数据(如监控指标、日志记录等)存储与分析场景,帮助用户在保障数据安全的前提下高效构建稳定的时序数据管理平台。
155M+ pulls
上次更新:4 个月前
bitnamicharts/influxdb logo
bitnamicharts/influxdb
by VMware
认证
Bitnami Helm图表,用于在Kubernetes集群上部署开源时序数据库InfluxDB™ Core,支持内存、文件及云存储系统,适用于开发、测试与评估场景。
1M+ pulls
上次更新:4 个月前
arm32v7/influxdb logo
arm32v7/influxdb
by arm32v7
InfluxDB是为实时分析工作负载构建的开源时间序列数据库。
28500K+ pulls
上次更新:1 年前
amd64/influxdb logo
amd64/influxdb
by amd64
InfluxDB是为实时分析工作负载构建的开源时序数据库。
100K+ pulls
上次更新:12 天前
arm64v8/influxdb logo
arm64v8/influxdb
by arm64v8
InfluxDB是为实时分析工作负载构建的开源时序数据库。
12100K+ pulls
上次更新:12 天前

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

登录仓库拉取

通过 Docker 登录认证访问私有仓库

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

Docker Compose

Docker Compose 项目配置

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

宝塔面板

在宝塔面板一键配置镜像

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

极空间

极空间 NAS 系统配置服务

爱快路由

爱快 iKuai 路由系统配置

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

专属域名拉取

无需登录使用专属域名

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

轩辕镜像免费版与专业版有什么区别?

免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

轩辕镜像支持哪些镜像仓库?

专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

oldzhang的头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
library/influxdb
官方博客Docker 镜像使用技巧与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
提交工单
免费获取在线技术支持请 提交工单,官方QQ群:13763429 。
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
免费获取在线技术支持请提交工单,官方QQ群: 。
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.
轩辕镜像 官方专业版 Logo
轩辕镜像轩辕镜像官方专业版
首页个人中心搜索镜像
交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 13763429