pdf / docker-compose.yml
fokan's picture
Upload 39 files
14a7592 verified
raw
history blame contribute delete
694 Bytes
version: '3.8'
services:
docx-to-pdf-arabic:
build: .
container_name: docx-pdf-converter-arabic
ports:
- "7860:7860" # Changed from 8000:8000 to 7860:7860 for Hugging Face Spaces compatibility
environment:
- LANG=ar_SA.UTF-8
- LC_ALL=ar_SA.UTF-8
- PYTHONUNBUFFERED=1
volumes:
# Optional: Mount local directories for testing
- ./test_files:/app/test_files:ro
- ./test_results:/app/test_results
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/"] # Changed from 8000 to 7860
interval: 30s
timeout: 10s
retries: 3
start_period: 40s