Jump to content

Graylog Docker


surfshack66

Recommended Posts

Graylog provided a list of "quick-start" commands to run their docker.

https://github.com/Graylog2/graylog-docker

 

$ docker run --name mongo -d mongo:3
$ docker run --name elasticsearch \
    -e "http.host=0.0.0.0" -e "xpack.security.enabled=false" \
    -d docker.elastic.co/elasticsearch/elasticsearch:5.6.12
$ docker run --link mongo --link elasticsearch \
    -p 9000:9000 -p 12201:12201 -p 514:514 \
    -e GRAYLOG_WEB_ENDPOINT_URI="http://127.0.0.1:9000/api" \
    -d graylog/graylog:2.4

 

Could I just create a terminal session on unraid and run these commands?

 

If not, they also provide a docker-compose file. Would it be better to customize this and is it possible to run a docker-compose file?

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...