Git Product home page Git Product logo

elk-config's Introduction

Docker image with ELK-stack configs

What is pure/elk-config?

pure/elk-config is docker image to provide configurations for dockerized ELK stack (Elasticsearch, Logstash, Kibana). Usually it runs as sidekick for ELK docker images. It contains several VOLUMES that possible use from other containers by --volumes-from option:

Example of usage

Start container with confg files:

docker run -d -i --name elk-config pure/elk-config

Use volumes from started container (as example for elasticsearch container):

docker run \
    -d \
    --name es \
    -p 9200:9200 
    --volumes-from elk-config:ro \
    -v /path/to/persistent/data:/usr/share/elasticsearch/data \
    elasticsearch:alpine

Example how to use you own config files

  • Clone git repo by git clone https://github.com/pureclouds/elk-config.git
  • Edit configs in corresponding subdurs
  • Build your own elk-config docker image by docker build -t local/elk-config .
  • Start your own config container by docker run -d -i --name elk-config local/elk-config
  • Start ELK stack containers with --volumes-from elk-config option

Nginx frontend for kibana container

Image contais example configuration for Nginx that serve's as frontend proxy for kibana container to allow authorized access to dashboards. You could specify your own credentials via -e ELK_USER=yourname -e ELK_PASS=yoursecret when starting config container.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.