JableTVDownload WebUI
v0.2-20240722
JableTV Download WebUI is a user-friendly web interface for downloading videos from jable.tv. This project is built on top of hcjohn463's JableTVDownload project.
docker-compose.yml
file:services:
jable-downloader-service:
container_name: jable-downloader-service
image: bypass42/jable-downloader-service:latest
restart: unless-stopped
volumes:
- ./downloads:/app/downloads
- ./db:/app/db
jable-downloader-ui:
container_name: jable-downloader-ui
image: bypass42/jable-downloader-ui:latest
restart: unless-stopped
environment:
- API_ENDPOINT="http://jable-downloader-service:3000"
ports:
- 41056:80
./downloads
to the folder path where you want to save downloaded videos../db
to the folder path where you want to save the database file.docker-compose up -d
Special thanks to hcjohn463 for the original JableTVDownload project, which serves as the foundation for this project.