JableTV下載 WebUI
v0.2-20240722
JableTV 下載 WebUI 是一個用戶友好的 Web 介面,可從 jable.tv 下載影片。此專案建立在 hcjohn463 的 JableTVDownload 專案之上。
docker-compose.yml
檔案: 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
變更為您要儲存下載影片的資料夾路徑。./db
變更為要儲存資料庫檔案的資料夾路徑。docker-compose up -d
特別感謝 hcjohn463 最初的 JableTVDownload 項目,該項目作為該項目的基礎。