|
|
||
|---|---|---|
| .. | ||
| README-short.txt | ||
| README.md | ||
| compose.yaml | ||
| content.md | ||
| get-help.md | ||
| github-repo | ||
| license.md | ||
| logo.png | ||
| maintainer.md | ||
| metadata.json | ||
README.md
Note: this is the "per-architecture" repository for the i386 builds of the influxdb official image -- for more information, see "Architectures other than amd64?" in the official images documentation and "An image's source changed in Git, now what?" in the official images FAQ.
Quick reference
-
Maintained by:
InfluxData -
Where to get help:
InfluxDB Discord Server (preferred for InfluxDB 3 Core, InfluxDB 3 Enterprise), InfluxDB Community Slack *(preferred for InfluxDB v2, v1)*
Supported tags and respective Dockerfile links
WARNING: THIS IMAGE IS NOT SUPPORTED ON THE i386 ARCHITECTURE
Quick reference (cont.)
-
Where to file issues:
https://github.com/influxdata/influxdata-docker/issues -
Published image artifact details:
repo-info repo'srepos/influxdb/directory (history)
(image metadata, transfer size, etc) -
Image updates:
official-images repo'slibrary/influxdblabel
official-images repo'slibrary/influxdbfile (history) -
Source of this description:
docs repo'sinfluxdb/directory (history)
What is InfluxDB?
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:
# 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:
docker run --rm -p 8181:8181 \
-v $PWD/data:/var/lib/influxdb3/data \
-v $PWD/plugins:/var/lib/influxdb3/plugins \
i386/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:
docker run --rm i386/influxdb:3-core influxdb3 serve --help
Available InfluxDB variants
i386/influxdb:3-core- Latest InfluxDB OSS (InfluxDB 3 Core)i386/influxdb:2- Previous generation OSS (InfluxDB v2)i386/influxdb:1.11- InfluxDB v1
InfluxDB 3 Core (i386/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 (i386/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 (i386/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) (i386/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)
i386/influxdb:1.11-data- Data nodes for clusteringi386/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:
- Dual-write new data to v1/v2 and InfluxDB 3.
- 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:
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 \
i386/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.
docker run -d -p 8086:8086 \
-v $PWD:/var/lib/influxdb \
i386/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.
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.
