blob: 1a6c9cfbee2b0a3fa36c6c1b84443f8090b005d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
version: '2'
services:
dasein:
build: .
env_file: .env
image: rbdr/dasein
environment:
- DASEIN_REDIS_HOST=db
ports:
- "1927:1927"
depends_on:
- db
db:
image: redis:3.2.6
|