Files
redash/docker-compose-example.yaml
2015-10-06 11:42:36 -07:00

18 lines
231 B
YAML

redash:
build: .
ports:
- "5000:5000"
- "9001:9001"
links:
- redis
- postgres
stdin_open: true
redis:
image: redis:3.0
ports:
- "6379:6379"
postgres:
image: postgres:9.4
ports:
- "5432:5432"