Skip to content

Instantly share code, notes, and snippets.

@webwurst
Last active August 29, 2015 14:22
Show Gist options
  • Save webwurst/9f19430e977e7fd02547 to your computer and use it in GitHub Desktop.
Save webwurst/9f19430e977e7fd02547 to your computer and use it in GitHub Desktop.
Example to test open-events/data-hub
$ sudo docker-compose up

# event-input-form
$ xdg-open http://localhost:5000/static/index.html

# kibana
$ xdg-open http://localhost:5601/
logstash:
image: logstash:1.5
command: logstash -f /logstash/conf/*.conf
ports:
- "7001:7001"
volumes:
- logstash:/logstash
links:
- elasticsearch
elasticsearch:
image: elasticsearch:1.5
volumes:
- elasticsearch/data:/usr/share/elasticsearch/data
ports:
- "9200:9200"
kibana:
image: webwurst/kibana
ports:
- "5601:5601"
links:
- elasticsearch
eventinputform:
image: codeformuenster/open-events_event-input-form
ports:
- "5000:5000"
links:
- logstash
scrapersmuenster:
image: codeformuenster/open-events_scrapers-muenster
command: ./scrape-loop-logstash.sh
links:
- logstash
parkleitsystemapi:
image: codeformuenster/parkleitsystemapi
command: ./scrape-loop-logstash.sh
links:
- logstash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment