Add compose file for easy setup
This commit is contained in:
parent
b34b5c4b69
commit
fb020522ad
1 changed files with 13 additions and 0 deletions
13
docker-compose.yml
Normal file
13
docker-compose.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
snappass:
|
||||||
|
image: snappass
|
||||||
|
ports:
|
||||||
|
- "5000:5000"
|
||||||
|
links:
|
||||||
|
- "redis:redis"
|
||||||
|
environment:
|
||||||
|
- REDIS_HOST=redis
|
||||||
|
- NO_SSL=True
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: "redis:latest"
|
Loading…
Reference in a new issue