Skip to content

Commit

Permalink
Dockerize the application
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosbuenosvinos committed May 5, 2016
1 parent 43a7843 commit 0502271
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
version: '2'
services:
queues:
image: rabbitmq:management
ports:
- "5672:5672"
- "15672:15672"
elastic:
image: elasticsearch
ports:
- "9200:9200"
- "9300:9300"
kibana:
image: kibana
ports:
- "5601:5601"
links:
- elastic
environment:
- ELASTICSEARCH_URL=http://elastic:9200
redis:
image: redis
ports:
- "6379:6379"

0 comments on commit 0502271

Please sign in to comment.