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