23 lines
530 B
YAML
23 lines
530 B
YAML
|
|
services:
|
||
|
|
lichess-bot:
|
||
|
|
build: .
|
||
|
|
container_name: lichess-telegram-bot
|
||
|
|
restart: unless-stopped
|
||
|
|
volumes:
|
||
|
|
- ./data:/app/data
|
||
|
|
- ./lichess_bot.db:/app/lichess_bot.db
|
||
|
|
environment:
|
||
|
|
- PYTHONPATH=/app
|
||
|
|
- PYTHONUNBUFFERED=1
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD", "python", "-c", "import requests; requests.get('http://localhost:8001/docs', timeout=5)"]
|
||
|
|
interval: 30s
|
||
|
|
timeout: 10s
|
||
|
|
retries: 3
|
||
|
|
start_period: 40s
|
||
|
|
network_mode: "host"
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
bot-data:
|
||
|
|
driver: local
|