Merge pull request #35 from ebuildy/patch-1

Update docker-compose file to version 2
This commit is contained in:
Nicholas Charriere 2016-10-24 09:24:29 -07:00 committed by GitHub
commit 2c84ff151b

View file

@ -1,13 +1,17 @@
--- version: '2'
services:
snappass: snappass:
image: snappass build: .
image: pinterest/snappass
ports: ports:
- "5000:5000" - "5000:5000"
links:
- "redis:redis"
environment: environment:
- REDIS_HOST=redis - REDIS_HOST=redis
- NO_SSL=True - NO_SSL=True
depends_on:
- redis
redis: redis:
image: "redis:latest" image: "redis:latest"