Add Dockerfile and docker-compose config

This commit is contained in:
Lars Henrik Mai 2016-01-23 20:33:02 +01:00
parent 0a702a18be
commit 1b60c08e9f
3 changed files with 32 additions and 0 deletions

12
docker-compose.yml Normal file
View file

@ -0,0 +1,12 @@
web:
build: .
volumes:
- .:/app
ports:
- "3000:3000"
links:
- elasticsearch
environment:
ELASTICSEARCH_URL: 'http://elasticsearch:9200'
elasticsearch:
image: elasticsearch:1.7