1
0
mirror of https://github.com/krislamo/graylog_demo synced 2024-09-19 21:50:36 +00:00
graylog_demo/docker-compose.yml

108 lines
2.7 KiB
YAML
Raw Permalink Normal View History

2020-01-22 19:57:33 +00:00
version: '3.7'
services:
2020-02-12 18:34:06 +00:00
traefik:
image: traefik:2.2.1
2020-02-12 18:34:06 +00:00
restart: always
2020-02-12 21:22:45 +00:00
networks:
- traefik-net
2020-02-12 18:34:06 +00:00
ports:
- 8080:80
command:
- "--providers.docker"
- "--providers.docker.exposedbydefault=false"
- "--entrypoints.web.address=:80"
- "--api.dashboard=true"
2020-02-12 21:22:45 +00:00
- "--log.level=DEBUG"
2020-02-12 18:34:06 +00:00
labels:
2020-02-12 21:22:45 +00:00
- "traefik.http.routers.traefik.rule=Host(`traefik.172.28.128.30.xip.io`)"
2020-02-12 18:34:06 +00:00
- 'traefik.http.middlewares.auth.basicauth.users=admin:$$apr1$$T1l.BCFz$$Jyg8msXYEAUi3LLH39I9d1'
- "traefik.http.routers.traefik.middlewares=auth@docker"
- "traefik.http.routers.traefik.service=api@internal"
2020-02-12 21:22:45 +00:00
- "traefik.docker.network=vagrant_traefik-net"
2020-02-12 18:34:06 +00:00
- "traefik.enable=true"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
2020-03-24 19:22:39 +00:00
logging:
driver: "fluentd"
options:
fluentd-address: "tcp://127.0.0.1:24224"
fluentd-async-connect: "true"
tag: traefik
2020-02-12 18:34:06 +00:00
2020-01-22 19:57:33 +00:00
mongo:
image: mongo:4.2.8
2020-01-31 18:53:21 +00:00
restart: always
2020-01-22 19:57:33 +00:00
networks:
- graylog
2020-03-24 19:22:39 +00:00
logging:
driver: "fluentd"
options:
fluentd-address: "tcp://127.0.0.1:24224"
fluentd-async-connect: "true"
tag: graylog.db
2020-01-22 19:57:33 +00:00
elasticsearch:
image: elasticsearch:6.8.10
2020-01-31 18:53:21 +00:00
restart: always
2020-01-22 19:57:33 +00:00
environment:
- http:host=0.0.0.0
- transport.host=localhost
- network.host=0.0.0.0
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
networks:
- graylog
2020-03-24 19:22:39 +00:00
logging:
driver: "fluentd"
options:
fluentd-address: "tcp://127.0.0.1:24224"
fluentd-async-connect: "true"
tag: graylog.elasticsearch
2020-01-22 19:57:33 +00:00
graylog:
image: graylog/graylog:3.3.2
2020-01-31 18:53:21 +00:00
restart: always
2020-01-22 19:57:33 +00:00
environment:
- GRAYLOG_PASSWORD_SECRET=LongerPassword01
# Password: admin
- GRAYLOG_ROOT_PASSWORD_SHA2=8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918
- GRAYLOG_HTTP_EXTERNAL_URI=http://172.28.128.30:9000/
2020-02-12 21:22:45 +00:00
labels:
- "traefik.http.routers.graylog.rule=Host(`graylog.172.28.128.30.xip.io`)"
- "traefik.http.services.graylog.loadbalancer.server.port=9000"
- "traefik.docker.network=vagrant_traefik-net"
- "traefik.enable=true"
2020-01-22 19:57:33 +00:00
networks:
- graylog
2020-02-12 21:22:45 +00:00
- traefik-net
2020-01-22 19:57:33 +00:00
depends_on:
- mongo
- elasticsearch
ports:
# Graylog web interface and REST API
- 9000:9000
# Syslog TCP
- 1514:1514
# Syslog UDP
- 1514:1514/udp
# GELF TCP
- 12201:12201
# GELF UDP
- 12201:12201/udp
2020-03-24 19:22:39 +00:00
logging:
driver: "fluentd"
options:
fluentd-address: "tcp://127.0.0.1:24224"
fluentd-async-connect: "true"
tag: graylog
2020-01-22 19:57:33 +00:00
networks:
2020-02-12 18:34:06 +00:00
traefik-net:
2020-01-22 19:57:33 +00:00
graylog:
driver: bridge