intrabot/docker-compose.yml
2026-03-15 21:36:03 +03:00

16 lines
No EOL
444 B
YAML

services:
intradbot:
build: .
restart: always
env_file: .env
ports:
- "8080:8080"
volumes:
- ./data:/app/data
- ./ssl:/app/ssl:ro # ← реальные файлы без симлинков
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8080/health')"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s