snappass/docker-compose.yml
Thomas Decaux 8133db24b0 Update docker-compose file to version 2
And snappass container will be built from Dockerfile since there is no official image (yet..)
2016-10-24 16:03:03 +02:00

17 lines
289 B
YAML

version: '2'
services:
snappass:
build: .
image: pinterest/snappass
ports:
- "5000:5000"
environment:
- REDIS_HOST=redis
- NO_SSL=True
depends_on:
- redis
redis:
image: "redis:latest"