https://github.com/laurawebdev/khid-docker
KHID as a Docker run WebUI
https://github.com/laurawebdev/khid-docker
Last synced: 12 months ago
JSON representation
KHID as a Docker run WebUI
- Host: GitHub
- URL: https://github.com/laurawebdev/khid-docker
- Owner: LauraWebdev
- Created: 2025-01-11T18:11:44.000Z (over 1 year ago)
- Default Branch: dev
- Last Pushed: 2025-01-17T13:28:15.000Z (over 1 year ago)
- Last Synced: 2025-03-13T22:13:11.122Z (over 1 year ago)
- Language: Vue
- Size: 4.19 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KHInsider Downloader
## WebUI

A simple docker container & web UI to download media from downloads.khinsider.com
## Variables
| Variable | Description | Required | Default |
|-----------------|----------------------------------------------------------|----------|--------------|
| OUTPUT_DIR | The output directory for downloads. Can be a volume path | `no` | Project root |
| REQUEST_TIMEOUT | Time until requests timeout | `no` | 30 seconds |
## Docker Compose
```yaml
services:
server:
image: "ghcr.io/laurawebdev/khid-docker:latest"
environment:
NODE_ENV: production
OUTPUT_DIR: "/output"
REQUEST_TIMEOUT: 30000
volumes:
- "./path/for/your/downloads:/output"
ports:
- "8080:8080"
```