jtreminio / dashtainer

MIT License
50 stars 3 forks source link

[Request] Kibana #10

Open simshaun opened 6 years ago

simshaun commented 6 years ago

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:

jtreminio commented 6 years ago

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