The latest stable version of Graylog is 6.1.0
.
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.
There are images for the linux/amd64
and linux/arm64
platforms available. All images are based on the latest Eclipse Temurin image (JRE + Ubuntu LTS variant) available at build time.
graylog/graylog
This is the open source Graylog image. It contains Graylog as well as the Integrations plugin.
Java Version | Platform | Tags |
---|---|---|
OpenJDK 17 | linux/amd64 , linux/arm64 |
6.1 , 6.1.0 , 6.1.0-1 |
Note: There is no 'latest' tag. You'll need to specify which version you want.
graylog/graylog-enterprise
This is the Graylog Enterprise image. It contains Graylog, the Graylog Enterprise plugin, the Integrations plugin, and the Enterprise Integrations plugin.
Java Version | Platform | Tags |
---|---|---|
OpenJDK 17 | linux/amd64 , linux/arm64 |
6.1 , 6.1.0 , 6.1.0-1 |
graylog/graylog-forwarder
This image runs the Graylog Forwarder. Documentation on the Forwarder can be found here.
The latest stable version is 6.1
, with support for Java 17 on platform linux/amd64
and linux/arm64
.
Java Version | Platform | Tags |
---|---|---|
OpenJDK 17 | linux/amd64 , linux/arm64 |
6.1 , forwarder-6.1-1 |
Take a look at the minimal Graylog 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.
Please refer to the Graylog Docker documentation 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.
Notably, this image requires that two important configuration options be set (although in practice you will likely need to set more):
password_secret
(environment variable GRAYLOG_PASSWORD_SECRET
)
pwgen -N 1 -s 96
root_password_sha2
(environment variable GRAYLOG_ROOT_PASSWORD_SHA2
)
admin
. This value is customizable via configuration option root_username
(environment variable GRAYLOG_ROOT_USERNAME
).echo -n "Enter Password: " && head -1 </dev/stdin | tr -d '\n' | sha256sum | cut -d" " -f1
Every Graylog configuration option can be set via environment variable. To get the environment variable name for a given configuration option, simply prefix the option name with GRAYLOG_
and put it all in upper case. Another option is to store the configuration file outside of the container and edit it directly.
This image includes the wait-for-it script, which allows you to have Docker wait for Elasticsearch to start up before starting Graylog. For example, if you are using Docker Compose you could override the entrypoint for Graylog like this:
entrypoint: /usr/bin/tini -- wait-for-it elasticsearch:9200 -- /docker-entrypoint.sh
Documentation for Graylog is hosted here. Please read through the docs and familiarize yourself with the functionality before opening an issue on GitHub.
Graylog itself is licensed under the Server Side Public License (SSPL), see license information.
This Docker image is licensed under the Apache 2.0 license, see LICENSE.