services: ai-detector: build: . container_name: ai_detector ports: - "${PORT:-7860}:7860" env_file: .env environment: - PORT=7860 volumes: - ./.env:/app/.env - ./src:/app/src - ./app.py:/app/app.py restart: unless-stopped