This repository contains a custom Fluentd Docker image with the BigQuery plugin pre-installed. The image is built from the official Fluentd Debian-based image and includes the necessary dependencies to use the fluent-plugin-bigquery plugin.
The Docker image is published to GitHub Container Registry and can be used with:
docker pull ghcr.io/OWNER/fluentd-image/fluentd-bigquery:latestReplace OWNER with your GitHub username or organization name.
- Based on fluent/fluentd:v1.16-debian-2
- Pre-installed BigQuery plugin for sending logs to Google BigQuery
- Automatically built and published using GitHub Actions
To build the image locally:
docker build -t fluentd-bigquery .The image can be used in your Docker Compose or Kubernetes configurations where Fluentd is required with BigQuery output support.
Example Docker Compose usage:
services:
fluentd:
image: ghcr.io/OWNER/fluentd-image/fluentd-bigquery:latest
volumes:
- ./fluent.conf:/fluentd/etc/fluent.conf