Return to Image List

fluentd

fluentd

Fluentd is an open source data collector, which lets you unify the data collection and consumption for a better use and understanding of data.

See fluentd.org 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.
1.19.1 docker pull icr.io/ibmz/fluentd@sha256:ff783295dbf7d41ccc3547731b8c9aca910c6cd44377a015885614aa2e46cd7e Vulnerability Report01-21-2026
Version Pull String Security (IBM Cloud) Created

Usage Notes

Note that you will need to use docker volumes on ZCX, as bind mounts to the filesystem are not permitted.

docker volume create [your_vol]


docker run -d -p 24224:24224 -p 24224:24224/udp -v [your_vol]:/fluentd/log icr.io/ibmz/fluentd:[version]

Default configurations are to: Providing your own configuration file and additional options:

fluentd arguments can be appended to the docker run line.
For example, to provide a bespoke config and make fluentd verbose:

docker run -ti --rm -v [your_vol]:/fluentd/etc icr.io/ibmz/fluentd:[version] -c /fluentd/etc/[conf] -v

The first -v tells Docker to share your docker volume and mount it at /fluentd/etc The -c after the container name (fluentd) tells fluentd where to find the config file. The second -v is passed to set fluentd to verbose mode.