An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# KHInsider Downloader
## WebUI

![](./docs/screenshot.png)

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"
```