From 32b167855f27c7c36a69880e4e385abfd4cffc0f Mon Sep 17 00:00:00 2001 From: Elwador <75888166+Elwador@users.noreply.github.com> Date: Sat, 18 Apr 2026 18:21:10 +0200 Subject: [PATCH] Updated Home (markdown) --- Home.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Home.md b/Home.md index dee8470..9702a93 100644 --- a/Home.md +++ b/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 +``` \ No newline at end of file