blob: a6c5be93637a1976c53783725c355b914989c76f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
services:
redis:
image: redis:7.0.9-alpine
command: redis-server --bind 0.0.0.0
ports:
- 6379:6379
app:
image: vocode-telephony-app
env_file:
- .env
ports:
- 3000:3000
depends_on:
- redis
environment:
- REDISHOST=redis
|