- Installer docker : http://docs.docker.com/installation/
- Cloner le repo git : "git clone https://github.com/marchal-julien/docker-agimusng docker-agimusng"
- cd docker-agimusng
- Build the container : "docker build -t agimus-ng ."
- Run container : "docker run -i -p ES_LOCAL_PORT:9200 -p KB_LOCAL_PORT:5601 -v PERSISTANT_PATH:/persistant -t agimus-ng /bin/bash"
- ES_LOCAL_PORT : port out of container (local) to use elasticsearch
- KB_LOCAL_PORT : port out of container (local) to use kibana
- PERSISTANT_PATH : path out of container (local) to store persistant data of container (must be a real path)
- Find container IP
- on linux : "/sbin/ifconfig docker0 | grep "inet adr" | awk -F: '{print $2}' | awk '{print $1}'" 2; on windows using boot2docker : boot2docker.exe ip
- Use your browser
- go to Elasticsearch : http://DOCKER_IP:9200
- go to KOPF (health dashboard): http://DOCKER_IP:9200/_plugin/kopf/
- go to Sense (request editor): http://DOCKER_IP:9200/_plugin/marvel/sense/
- go to Kibana : http://DOCKER_IP:5601
To stop this container "exit"