docker-requestbin/docker-compose.yml
suyambuganesh f07d2933d6 Update REDIS_URL with the redis port to 6379 (#1)
Redis version 3.2.5 listens to port 6379
2016-11-29 20:43:10 -06:00

16 lines
270 B
YAML

version: '2'
services:
redis:
image: redis
requestbin:
image: crccheck/requestbin
# build: .
depends_on:
- redis
environment:
REDIS_URL: redis://redis:6379/0
# SESSION_SECRET_KEY
# BUGSNAG_KEY
ports:
- "8000:80"