
Maintained by:
https://github.com/influxdata/influxdata-docker
Where to get help:
InfluxDB *** Server (preferred for InfluxDB 3 Core, InfluxDB 3 Enterprise), InfluxDB Community Slack *(preferred for InfluxDB v2, v1)*
Dockerfile linkshttps://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.12/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.12/alpine/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.12/data/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.12/data/alpine/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.12/meta/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.12/meta/alpine/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.11/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.11/alpine/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.11/data/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.11/data/alpine/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.11/meta/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/1.11/meta/alpine/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/2.7/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/2.7/alpine/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/2.8/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/2.8/alpine/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/3.9-core/Dockerfile
https://github.com/influxdata/influxdata-docker/blob/ca349af15bb3dbe666a26fa0acf7e19b32ac74ec/influxdb/3.9-enterprise/Dockerfile
Where to file issues:
https://github.com/influxdata/influxdata-docker/issues?q=
Supported architectures: (https://github.com/docker-library/official-images#architectures-other-than-amd64)
https://hub.docker.com/r/amd64/influxdb/, https://hub.docker.com/r/arm64v8/influxdb/
Published image artifact details:
https://github.com/docker-library/repo-info/blob/master/repos/influxdb (https://github.com/docker-library/repo-info/commits/master/repos/influxdb)
(image metadata, transfer size, etc)
Image updates:
https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Finfluxdb
https://github.com/docker-library/official-images/blob/master/library/influxdb (https://github.com/docker-library/official-images/commits/master/library/influxdb)
Source of this description:
https://github.com/docker-library/docs/tree/master/influxdb (https://github.com/docker-library/docs/commits/master/influxdb)
On May 27, 2026, the latest tag for InfluxDB will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your deployments.
!https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb***e79cd6d69186f67/influxdb/logo.png
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.
... via https://github.com/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:
bashdocker 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:
/var/lib/influxdb3/data8181After 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.
Use the following tools with InfluxDB 3 Core:
Customize your instance with available server options:
bashdocker run --rm influxdb:3-core influxdb3 serve --help
influxdb:3-core - Latest InfluxDB OSS (InfluxDB 3 Core)influxdb:2 - Previous generation OSS (InfluxDB v2)influxdb:1.11 - InfluxDB v1influxdb:3-core) - Latest OSSinfluxdb:2)influxdb:1.11)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:1.11-data - Data nodes for clusteringinfluxdb:1.11-meta - Meta nodes for cluster coordination (port 8091)For setup instructions, see the InfluxDB v1 Enterprise Docker documentation.
To migrate from v1 or v2 to InfluxDB 3:
InfluxDB v2 is a previous version. *** InfluxDB 3 Core for new deployments.
Enter the following command to start InfluxDB v2 initialized with custom configuration:
bashdocker 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.
InfluxDB v1 is a previous version. *** InfluxDB 3 Core for new deployments.
bashdocker run -d -p 8086:8086 \ -v $PWD:/var/lib/influxdb \ influxdb:1.11
This starts InfluxDB v1 with:
For more information, see the InfluxDB v1 Docker documentation. For v1 Enterprise installation, see the InfluxDB Enterprise v1 documentation.
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>-alpineThis image is based on the popular Alpine Linux project, available in https://hub.docker.com/_/alpine. 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 https://hub.docker.com/_/alpine/ for examples of how to install packages if you are unfamiliar).
View https://github.com/influxdata/influxdb/blob/master/LICENSE 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 https://github.com/docker-library/repo-info/tree/master/repos/influxdb.
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.
以下是 influxdb 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
docker search 限制
站内搜不到镜像
离线 save/load
插件要用 plugin install
WSL 拉取慢
安全与 digest
新手拉取配置
镜像合规机制
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
域名连通性排查
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务