jarvis-compose/docker-compose.yaml

24 lines
364 B
YAML

version: "3.8"
services:
cache:
image: redis
restart: always
command: redis-server --save 20 1 --loglevel warning
mongodb:
image: mongo
command: mongod
bot:
build: ./jarvis-bot
depends_on:
- cache
- mongodb
tasks:
build: ./jarvis-tasks
stop_grace_period: 5s
depends_on:
- cache
- mongodb