All checks were successful
CI / build (push) Successful in 52s
- Add MediaTypeAsk (0) as the default, mapping old video_audio to Ask - Show Video/Audio/Ask type picker when no default media type is set - Auto-select matching format and skip picker when defaults are configured - Add autoSelectVideoFormat / autoSelectAudioFormat helpers with closest-match - Add buildFilteredFormatList for type-filtered format lists - Add Media Type setting in settings UI (Ask/Video/Audio) - Add --merge-output-format mp4 for video downloads via yt-dlp - Fix formatLabelForDisplay to show Height fallback and Extension - Add cookies volume mount to docker-compose.yml - Document cookies setup and new features in README
23 lines
488 B
YAML
23 lines
488 B
YAML
services:
|
|
uptodown-bot:
|
|
build:
|
|
context: .
|
|
args:
|
|
HTTP_PROXY: ${HTTP_PROXY}
|
|
HTTPS_PROXY: ${HTTPS_PROXY}
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- BOT_TOKEN=${BOT_TOKEN}
|
|
- HTTP_PROXY=${HTTP_PROXY}
|
|
- HTTPS_PROXY=${HTTPS_PROXY}
|
|
- DB_PATH=${DB_PATH}
|
|
- TZ=${TZ}
|
|
volumes:
|
|
- uptodown_data:/data
|
|
- ./cookies.txt:/cookies.txt:ro # Optional: cookies file for yt-dlp auth
|
|
|
|
volumes:
|
|
uptodown_data:
|
|
driver: local
|