Return to Image List

influxdb

influxdb

InfluxDB is an open-source time series database (TSDB) developed by the company InfluxData. It is written in the Go programming language for storage and retrieval of time series data in fields such as operations monitoring, application metrics, Internet of Things sensor data, and real-time analytics.

See github.com/influxdata/influxdb for more information

This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.


License

View license information here

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).

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.


Versions

Use the pull string below for the version of this image you require.
2.2.0 docker pull icr.io/ibmz/influxdb@sha256:9a8f51585f0f55acb2babd7c8165efb614f2be5a8dbd253f9db07ceb13e13892 Vulnerability Report08-10-2022
1.8.9 docker pull icr.io/ibmz/influxdb@sha256:a9d3f409b7815e045210d772d15838fe8337c04a96db24e15a1244505f50b4fd Vulnerability Report11-24-2022
Version Pull String Security (IBM Cloud) Created

Usage Notes

Version 1.9.7 does not serve an http port/landing page, and all queries will be pointed to whichever port you have mapped to the container's exposed port `8086`

docker run -i -p 8086:8086 --name influx icr.io/ibmz/influxdb:1.9.7

Example query against version 1.9.7 - create a database "mydb":

curl -XPOST "http://$host:8086/query" --data-urlencode "q=CREATE DATABASE mydb"

Though the query route behaves the same for versions 2.0 and higher, it also comes with an http port/landing page you can navigate to:

docker run -d -p 8086:8086 icr.io/ibmz/influxdb:2.x.x

Then navigate to the [host-ip] at port 8086 and create a user.

For more information, please look to the official documentation at github.com/influxdata/influxdb