NewsBlur/docker-compose.yml

43 lines
499 B
YAML
Raw Normal View History

2015-11-02 00:15:05 -08:00
---
newsblur:
build: .
dockerfile: docker/Dockerfile
links:
- mongo
- postgres
- elasticsearch
- redis
ports:
- '80:8000'
2015-11-02 00:30:09 -08:00
2015-11-02 00:15:05 -08:00
postgres:
image: postgres:9
environment:
- POSTGRES_USER=newsblur
- POSTGRES_PASSWORD=newsblur
ports:
- '3306:3306'
redis:
image: redis:3
ports:
- '6379:6379'
elasticsearch:
image: elasticsearch:1.7
ports:
- '9200:9200'
mongo:
image: mongo:3
ports:
- '27017:27017'
command: mongod --smallfiles