Files
hotels/docker-compose.yml
Фёдор 0cf3297290 Проект аудита отелей: основные скрипты и документация
- Краулеры: smart_crawler.py, regional_crawler.py
- Аудит: audit_orel_to_excel.py, audit_chukotka_to_excel.py
- РКН проверка: check_rkn_registry.py, recheck_unclear_rkn.py
- Отчёты: create_orel_horizontal_report.py
- Обработка: process_all_hotels_embeddings.py
- Документация: README.md, DB_SCHEMA_REFERENCE.md
2025-10-16 10:52:09 +03:00

33 lines
1020 B
YAML

version: '3.8'
services:
hotel-audit-web:
build:
context: .
dockerfile: Dockerfile
container_name: hotel-audit-web
restart: unless-stopped
networks:
- dokploy-network
labels:
- "traefik.enable=true"
- "traefik.http.routers.hotel-audit.rule=Host(`hotel.klientprav.tech`)"
- "traefik.http.routers.hotel-audit.entrypoints=websecure"
- "traefik.http.routers.hotel-audit.tls=true"
- "traefik.http.routers.hotel-audit.tls.certresolver=letsencrypt"
- "traefik.http.services.hotel-audit.loadbalancer.server.port=8888"
# HTTP to HTTPS redirect
- "traefik.http.routers.hotel-audit-http.rule=Host(`hotel.klientprav.tech`)"
- "traefik.http.routers.hotel-audit-http.entrypoints=web"
- "traefik.http.routers.hotel-audit-http.middlewares=redirect-to-https"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
environment:
- PYTHONUNBUFFERED=1
networks:
dokploy-network:
external: true