basic docker-compose for just running the environment together with redis

This commit is contained in:
emil-lengman 2020-08-12 18:15:59 +02:00 committed by Jérémie Pardou-Piquemal
parent 2cbf8be67c
commit 9eb46e2198

17
docker-compose.yaml Normal file
View File

@ -0,0 +1,17 @@
version: '3.0'
services:
redis:
image: redis:6.0.6
networks:
- db
darkwire.io:
build:
context: .
environment:
- STORE_HOST=redis://redis:6379
networks:
- db
ports:
- 3001:3001
networks:
db: