Spaces:
Sleeping
Sleeping
| version: '3.8' | |
| services: | |
| object-tracker: | |
| build: . | |
| container_name: object-tracker | |
| ports: | |
| - "7860:7860" | |
| environment: | |
| - USE_YOUTUBE_STREAM=true | |
| - YOUTUBE_URL=https://youtu.be/VUJbDTIYlM4 | |
| # DNS configuration for better network connectivity | |
| dns: | |
| - 8.8.8.8 | |
| - 8.8.4.4 | |
| # Alternative: use host network (may have security implications) | |
| # network_mode: host | |
| restart: unless-stopped | |
| volumes: | |
| # Optional: mount thumbnails directory to persist data | |
| - ./thumbnails:/app/thumbnails | |