imaginaryfriend/docker-compose.yml

16 lines
263 B
YAML

version: '2.1'
services:
bot:
build: .
command: python run.py
volumes:
- .:/code
depends_on:
- redis
restart: unless-stopped
redis:
image: redis:3.2.8-alpine
volumes:
- ./storage:/data
restart: unless-stopped