Updated Home (markdown)

Elwador 2026-04-18 18:21:10 +02:00
parent b07efb6d2f
commit 32b167855f

25
Home.md

@ -67,4 +67,29 @@ The Crunchy-Downloader offers several startup parameters to customize its behavi
| `--historyAddToQueue` | Automatically adds missing episodes to the download queue. |
| `--exit` | Exits the downloader after all tasks are completed. |
# Docker Compose Example
Below is an example docker-compose.yml for running Crunchy Downloader Webtop with the latest published image from GHCR.
It uses simple default values and mounts local folders for config, downloads, and other data. Adjust the paths, ports, and environment variables as needed for your setup.
```
services:
webtop:
image: ghcr.io/crunchy-dl/crunchy-downloader-webtop:latest
container_name: crunchy-downloader-webtop
restart: unless-stopped
shm_size: "1gb"
ports:
- "3000:3000"
- "3001:3001"
environment:
TZ: "${TZ:-Etc/UTC}"
PUID: "${PUID:-1000}"
PGID: "${PGID:-1000}"
TITLE: "Crunchy Downloader Webtop"
volumes:
- ./docker/webtop-config:/config
- ./docker/crd-data:/crd-data
- ./docker/local-data:/data
```