Docker-compose pour tester Graylog 2.2.0-beta6. Login et mdp : admin
version: '2' | |
services: | |
some-mongo: | |
image: "mongo:3" | |
some-elasticsearch: | |
image: "elasticsearch:2" | |
command: "elasticsearch -Des.cluster.name='graylog'" | |
graylog: | |
image: graylog2/server:2.2.0-beta.6-1 | |
environment: | |
GRAYLOG_PASSWORD_SECRET: somepasswordpepper | |
GRAYLOG_ROOT_PASSWORD_SHA2: 8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918 | |
GRAYLOG_WEB_ENDPOINT_URI: http://37.187.101.115:9000/api | |
links: | |
- some-mongo:mongo | |
- some-elasticsearch:elasticsearch | |
ports: | |
- "9000:9000" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment