# graylog-docker **Repository Path**: mirrors_gladiopeace/graylog-docker ## Basic Information - **Project Name**: graylog-docker - **Description**: Official Graylog Docker image - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: 4.2 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-03-30 - **Last Updated**: 2026-01-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Graylog Docker Image [![Docker Stars](https://img.shields.io/docker/stars/graylog/graylog.svg)][hub] [![Docker Pulls](https://img.shields.io/docker/pulls/graylog/graylog.svg)][hub] [hub]: https://hub.docker.com/r/graylog/graylog/ The latest stable version of Graylog is **`4.2.7`**. ## What is Graylog? Graylog is a centralized logging solution that enables aggregating and searching through logs. It provides a powerful query language, a processing pipeline for data transformation, alerting abilities, and much more. It is fully extensible through a REST API. Add-ons can be downloaded from the [Graylog Marketplace](https://marketplace.graylog.org/). ## Image Details There are several different image variants available, with variants for Java 8 and 11 on platforms `linux/amd64` and `linux/arm64`. All images run on Debian 11. #### `graylog/graylog` This is the open source [Graylog ](https://hub.docker.com/r/graylog/graylog/) image. It contains [Graylog](https://github.com/Graylog2/graylog2-server) as well as the [Integrations](https://docs.graylog.org/docs/integrations) plugin. | Java Version | Platform | Tags | |---|---|---| | OpenJDK 8 | `linux/amd64`, `linux/arm64` | `4.2`, `4.2.7`, `4.2.7-1` | | OpenJDK 11 | `linux/amd64`, `linux/arm64` | `4.2-jre11`, `4.2.7-jre11`, `4.2.7-1-jre11` | > Note: There is no 'latest' tag. You'll need to specify which version you want. #### `graylog/graylog-enterprise` This is the [Graylog Enterprise](https://hub.docker.com/r/graylog/graylog-enterprise/) image. It contains [Graylog](https://github.com/Graylog2/graylog2-server), the [Graylog Enterprise](https://docs.graylog.org/docs/intro) plugin, the [Integrations](https://docs.graylog.org/docs/integrations) plugin, and the Enterprise Integrations plugin. | Java Version | Platform | Tags | |---|---|---| | OpenJDK 8 | `linux/amd64` | `4.2`, `4.2.7`, `4.2.7-1` | | OpenJDK 11 | `linux/amd64` | `4.2-jre11`, `4.2.7-jre11`, `4.2.7-1-jre11` | #### `graylog/graylog-forwarder` This image runs the [Graylog Forwarder](https://hub.docker.com/r/graylog/graylog-forwarder/). Documentation on the Forwarder can be found [here](https://docs.graylog.org/docs/forwarder). The latest stable version is **`4.7`**, with support for Java 8 on platform `linux/amd64`. | Java Version | Platform | Tags | |---|---|---| | OpenJDK 8 | `linux/amd64`, `linux/arm64` | `4.7`, `forwarder-4.7-1` | ## Architecture Take a look at the minimal [Graylog architecture](https://docs.graylog.org/docs/architecture) to get the big picture of a Graylog setup. In essence, Graylog needs to talk to MongoDB to store configuration data as well as Elasticsearch to store the actual log data. ## Configuration Please refer to the [Graylog Docker documentation](https://docs.graylog.org/docs/docker) for a comprehensive overview and detailed description of the Graylog Docker image. If you want to quickly spin up an instance for testing, you can use our [Docker Compose template](https://github.com/Graylog2/docker-compose). Notably, this image **requires** that two important configuration options be set (although in practice you will likely need to set more): 1. `password_secret` (environment variable `GRAYLOG_PASSWORD_SECRET`) * A secret that is used for password encryption and salting. * Must be at least 16 characters, however using at least 64 characters is strongly recommended. * Must be the same on all Graylog nodes in the cluster. * May be generated with something like: `pwgen -N 1 -s 96` 2. `root_password_sha2` (environment variable `GRAYLOG_ROOT_PASSWORD_SHA2`) * A SHA2 hash of a password you will use for your initial login as Graylog's root user. * The default username is `admin`. This value is customizable via configuration option `root_username` (environment variable `GRAYLOG_ROOT_USERNAME`). * In general, these credentials will only be needed to initially set up the system or reconfigure the system in the event of an authentication backend failure. * This password cannot be changed using the API or via the Web interface. * May be generated with something like: `echo -n "Enter Password: " && head -1