Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions cluster/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ services:
# For DataNode setup, graylog starts with a preflight UI, this is a change from just using OpenSearch/Elasticsearch.
# Please take a look at the README at the top of this repo or the regular docs for more info.
datanode1:
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.1}"
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.3}"
hostname: "datanode1"
depends_on:
- "mongodb1"
Expand Down Expand Up @@ -78,7 +78,7 @@ services:
# For DataNode setup, graylog starts with a preflight UI, this is a change from just using OpenSearch/Elasticsearch.
# Please take a look at the README at the top of this repo or the regular docs for more info.
datanode2:
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.1}"
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.3}"
hostname: "datanode2"
depends_on:
- "mongodb1"
Expand Down Expand Up @@ -108,7 +108,7 @@ services:
# For DataNode setup, graylog starts with a preflight UI, this is a change from just using OpenSearch/Elasticsearch.
# Please take a look at the README at the top of this repo or the regular docs for more info.
datanode3:
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.1}"
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.3}"
hostname: "datanode3"
depends_on:
- "mongodb1"
Expand Down Expand Up @@ -136,7 +136,7 @@ services:
restart: "on-failure"

graylog1:
image: "${GRAYLOG_IMAGE:-graylog/graylog:6.1}"
image: "${GRAYLOG_IMAGE:-graylog/graylog:6.3}"
hostname: "graylog1"
depends_on:
- "mongodb1"
Expand Down Expand Up @@ -166,7 +166,7 @@ services:
restart: "on-failure"

graylog2:
image: "${GRAYLOG_IMAGE:-graylog/graylog:6.1}"
image: "${GRAYLOG_IMAGE:-graylog/graylog:6.3}"
hostname: "graylog2"
depends_on:
- "mongodb1"
Expand Down Expand Up @@ -197,7 +197,7 @@ services:
restart: "on-failure"

graylog3:
image: "${GRAYLOG_IMAGE:-graylog/graylog:6.1}"
image: "${GRAYLOG_IMAGE:-graylog/graylog:6.3}"
hostname: "graylog3"
depends_on:
- "mongodb1"
Expand Down
4 changes: 2 additions & 2 deletions enterprise/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
# Please take a look at the README at the top of this repo or the regular docs for more info.
# Graylog Data Node: https://hub.docker.com/r/graylog/graylog-datanode
datanode:
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.1}"
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.3}"
hostname: "datanode"
environment:
GRAYLOG_DATANODE_NODE_ID_FILE: "/var/lib/graylog-datanode/node-id"
Expand All @@ -42,7 +42,7 @@ services:

graylog:
hostname: "server"
image: "${GRAYLOG_IMAGE:-graylog/graylog-enterprise:6.1}"
image: "${GRAYLOG_IMAGE:-graylog/graylog-enterprise:6.3}"
depends_on:
mongodb:
condition: "service_started"
Expand Down
2 changes: 1 addition & 1 deletion forwarder/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
forwarder:
image: "graylog/graylog-forwarder:5.1"
image: "graylog/graylog-forwarder:6.5"
environment:
GRAYLOG_FORWARDER_SERVER_HOSTNAME: "${GRAYLOG_FORWARDER_SERVER_HOSTNAME:?Please configure GRAYLOG_FORWARDER_SERVER_HOSTNAME in the .env file}"
GRAYLOG_FORWARDER_GRPC_API_TOKEN: "${GRAYLOG_FORWARDER_GRPC_API_TOKEN:?Please configure GRAYLOG_FORWARDER_GRPC_API_TOKEN in the .env file}"
Expand Down
4 changes: 2 additions & 2 deletions open-core/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
# Please take a look at the README at the top of this repo or the regular docs for more info.
# Graylog Data Node: https://hub.docker.com/r/graylog/graylog-datanode
datanode:
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.1}"
image: "${DATANODE_IMAGE:-graylog/graylog-datanode:6.3}"
hostname: "datanode"
environment:
GRAYLOG_DATANODE_NODE_ID_FILE: "/var/lib/graylog-datanode/node-id"
Expand All @@ -43,7 +43,7 @@ services:
# Graylog: https://hub.docker.com/r/graylog/graylog-enterprise
graylog:
hostname: "server"
image: "${GRAYLOG_IMAGE:-graylog/graylog:6.1}"
image: "${GRAYLOG_IMAGE:-graylog/graylog:6.3}"
depends_on:
mongodb:
condition: "service_started"
Expand Down