mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-05-16 15:02:03 +00:00
Updated Home (markdown)
parent
b07efb6d2f
commit
32b167855f
1 changed files with 25 additions and 0 deletions
25
Home.md
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
|
||||
```
|
||||
Loading…
Reference in a new issue