16 lines
246 B
YAML
16 lines
246 B
YAML
|
|
services:
|
||
|
|
redis:
|
||
|
|
image: redis:7
|
||
|
|
ports:
|
||
|
|
- "6379:6379"
|
||
|
|
restart: unless-stopped
|
||
|
|
|
||
|
|
orchestrator:
|
||
|
|
build: ./orchestrator
|
||
|
|
depends_on:
|
||
|
|
- redis
|
||
|
|
environment:
|
||
|
|
REDIS_HOST: redis
|
||
|
|
stdin_open: true
|
||
|
|
tty: true
|