Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Request] Kibana #10

Open
simshaun opened this issue Apr 27, 2018 · 1 comment
Open

[Request] Kibana #10

simshaun opened this issue Apr 27, 2018 · 1 comment

Comments

@simshaun
Copy link

Would be cool if a Kibana service could be added to a project.

For reference, this is the configuration I'm using:

services:
    kibana:
        image: 'docker.elastic.co/kibana/kibana-oss:6.2.3'
        depends_on:
            - elasticsearch
        environment:
            SERVER_NAME: 'kibana'
            SERVER_HOST: '0.0.0.0'
            ELASTICSEARCH_URL: 'http://elasticsearch:9200'
        labels:
            - 'traefik.enable=true'
            - 'traefik.backend=kibana'
            - 'traefik.port=5601'
            - 'traefik.docker.network=traefik_webgateway'
            - 'traefik.frontend.rule=Host:kibana.loc,www.kibana.loc'
        networks:
            - shared
            - public
        ports:
            - '5601:5601'
        volumes:
            - './kibana/kibana.yml:/usr/share/kibana/config/kibana.yml:delegated'

Stuff to be aware of if using the reference above:

  • I use .loc instead of .localhost
  • I've customized Traefik to require traefik.enable. I don't think Dashtainer's default Traefik config needs that.
  • kibana.yml is empty. I just pre-emptively created it.
  • shared & public networks are my own custom networks.
  • I'm not really sure if the SERVER_HOST and ELASTICSEARCH_URL environment vars are really necessary.
@jtreminio
Copy link
Owner

I've been thinking how this would be configured via the existing UI design ... just know it's on my mind to add.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants