From 9b99282a1887254464baae46b0428cc894eb0a76 Mon Sep 17 00:00:00 2001 From: hedger Date: Sun, 8 Feb 2026 20:10:18 +0000 Subject: [PATCH 1/5] Add new service configurations and update existing ones Added new service configurations for bitmagnet-io, Freika/dawarich, and others. Updated deployed_version URLs and regex patterns for existing services. --- content/en/docs/Examples/services.md | 194 ++++++++++++++++++++++++++- 1 file changed, 192 insertions(+), 2 deletions(-) diff --git a/content/en/docs/Examples/services.md b/content/en/docs/Examples/services.md index f8c5d17..7a8d52b 100644 --- a/content/en/docs/Examples/services.md +++ b/content/en/docs/Examples/services.md @@ -134,6 +134,28 @@ service: icon: https://avatars.githubusercontent.com/u/30269780?s=200&v=4 ``` +## bitmagnet-io/bitmagnet +```yaml +service: + bitmagnet-io/bitmagnet: + latest_version: + type: github + url: bitmagnet-io/bitmagnet + require: + docker: + type: ghcr + image: bitmagnet-io/bitmagnet + tag: 'v{{ version }}' + deployed_version: + type: url + url: https://bitmagnet.example.com/status + json: info.version + regex: "([0-9.]+)" + dashboard: + icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/bitmagnet.png + web_url: https://github.com/bitmagnet-io/bitmagnet/releases/tag/v{{ version }} +``` + ## dani-garcia/vaultwarden Source: https://github.com/dani-garcia/vaultwarden @@ -145,14 +167,41 @@ service: latest_version: type: github url: dani-garcia/vaultwarden + require: + docker: + type: hub + image: vaultwarden/server + tag: '{{ version }}' deployed_version: - url: https://vaultwarden.example.io/api/version - regex: ([0-9.]+) + type: url + url: http://vaultwarden.example.com/api/version + regex: "([0-9.]+)" dashboard: web_url: https://github.com/dani-garcia/vaultwarden/releases/{{ version }} icon: https://raw.githubusercontent.com/dani-garcia/vaultwarden/main/src/static/images/vaultwarden-icon.png ``` +## Freika/dawarich +```yaml +service: + Freika/dawarich: + latest_version: + type: github + url: Freika/dawarich + require: + docker: + type: hub + image: freikin/dawarich + tag: '{{ version }}' + deployed_version: + type: url + url: http://dawarich.example.com/api/v1/health + target_header: x-dawarich-version + dashboard: + icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/dawarich.png + web_url: https://github.com/Freika/dawarich/releases/tag/{{ version }} +``` + ## dgtlmoon/changedetection.io Source: https://github.com/dgtlmoon/changedetection.io - You must use the API Key created: `Settings > API > API Access` @@ -646,6 +695,11 @@ service: latest_version: type: github url: immich-app/immich + require: + docker: + type: ghcr + image: immich-app/immich-server + tag: 'v{{ version }}' deployed_version: url: https://immich.example.io/api/server/about json: version @@ -742,6 +796,28 @@ service: web_url: https://github.com/Lidarr/Lidarr/releases/v{{ version }} ``` +## linkwarden/linkwarden +```yaml +service: + linkwarden/linkwarden: + latest_version: + type: github + url: linkwarden/linkwarden + require: + docker: + type: ghcr + image: linkwarden/linkwarden + tag: 'v{{ version }}' + deployed_version: + type: url + url: https://linkwarden.example.com/api/v1/config + json: response.INSTANCE_VERSION + regex: "([0-9.]+)" + dashboard: + icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/linkwarden.png + web_url: https://github.com/linkwarden/linkwarden/releases/tag/v{{ version }} +``` + ## louislam/uptime-kuma Source: https://github.com/louislam/uptime-kuma ```yaml @@ -836,6 +912,39 @@ service: icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/mealie.png ``` +## moghtech/komodo + +- `deployed_version` requires a token pair, `KOMODO_API_KEY` and `KOMODO_API_SECRET`. Add a service user with limited permissions and generate an API key for him. + +```yaml +service: + moghtech/komodo: + latest_version: + type: github + url: moghtech/komodo + require: + docker: + type: ghcr + image: moghtech/komodo-core + tag: '{{ version }}' + deployed_version: + type: url + method: POST + url: http://komodo.example.com/read/GetVersion + body: "{}" + json: version + headers: + - key: x-api-key + value: ${KOMODO_API_KEY} + - key: x-api-secret + value: ${KOMODO_API_SECRET} + - key: Content-Type + value: application/json; charset=utf8 + dashboard: + icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/komodo.png + web_url: https://github.com/moghtech/komodo/releases/tag/v{{ version }} +``` + ## morpheus65535/bazarr Source: https://github.com/morpheus65535/bazarr @@ -1007,6 +1116,34 @@ service: icon: https://www.getoutline.com/images/logo.svg ``` +## paperless-ngx/paperless-ngx + +- deployed_version - Requires a `PAPERLESS_NGX_API_KEY`. Create a service user and generate a token in the profile. + +```yaml +service: + paperless-ngx/paperless-ngx: + latest_version: + type: github + url: paperless-ngx/paperless-ngx + require: + docker: + type: ghcr + image: paperless-ngx/paperless-ngx + tag: '{{ version }}' + deployed_version: + type: url + url: http://paperlessngx.example.com/api/status/ + json: pngx_version + headers: + - key: Authorization + value: Token ${PAPERLESS_NGX_API_KEY} + dashboard: + icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/paperless-ngx.png + icon_link_to: https://papers.nanode.su + web_url: https://github.com/paperless-ngx/paperless-ngx/releases/tag/v{{ version }} +``` + ## Plex Media Server Source: https://plex.tv @@ -1141,6 +1278,31 @@ service: icon: https://raw.githubusercontent.com/pterodactyl/panel/develop/public/assets/svgs/pterodactyl.svg ``` +## qbittorrent/qBittorrent + +```yaml +service: + qbittorrent/qBittorrent: + latest_version: + type: github + url: qbittorrent/qBittorrent + url_commands: + - type: regex + regex: release-([0-9.]+) + require: + docker: + type: hub + image: linuxserver/qbittorrent + tag: '{{ version }}-libtorrentv1' + deployed_version: + type: url + url: http://qbittorrent.example.com/api/v2/app/version + regex: v?([0-9.]+) + dashboard: + icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/qbittorrent.png + web_url: https://github.com/qbittorrent/qBittorrent/releases/tag/release-{{ version }} +``` + ## Radarr/Radarr Source: https://github.com/Radarr/Radarr @@ -1260,6 +1422,34 @@ service: icon: https://static.requarks.io/logo/wikijs-butterfly.svg ``` +## Mikrotik RouterOS + +Needs a service account to check `deployed_version`. Add a new user with readonly permissions, limit their access to the IP of the server, and specify the credentials in the `MIKROTIK_USER`/`MIKROTIK_PASSWORD` environment variables. + +```yaml +service: + routeros: + options: + semantic_versioning: true + latest_version: + type: url + url: https://upgrade.mikrotik.com/routeros/NEWESTa7.stable + url_commands: + - type: regex + regex: ^([0-9]+\.[0-9.]+) + deployed_version: + type: url + url: http://192.168.1.1:8080/rest/system/resource + json: version + regex: "([0-9.]+)" + basic_auth: + username: ${MIKROTIK_USER} + password: ${MIKROTIK_PASSWORD} + dashboard: + icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/mikrotik.png + web_url: https://mikrotik.com/download/changelogs?channelFilter=stable +``` + ## sct/overseerr Source: https://github.com/sct/overseerr ```yaml From 36223cf55aed45abd5ab825c7a85ac61b161c99a Mon Sep 17 00:00:00 2001 From: hedger Date: Sun, 8 Feb 2026 20:27:03 +0000 Subject: [PATCH 2/5] added forgejo; formatting fixes --- content/en/docs/Examples/services.md | 108 ++++++++++++++++++--------- 1 file changed, 74 insertions(+), 34 deletions(-) diff --git a/content/en/docs/Examples/services.md b/content/en/docs/Examples/services.md index 7a8d52b..d5e0c45 100644 --- a/content/en/docs/Examples/services.md +++ b/content/en/docs/Examples/services.md @@ -9,7 +9,8 @@ description: > ## AdguardTeam/AdGuardHome Source: https://github.com/AdguardTeam/AdGuardHome -- deployed_version - Requires `USERNAME` and `PASSWORD` Basic Auth credentials created during the setup wizard on first launch unless you explicitly disabled it. +> deployed_version - Requires `USERNAME` and `PASSWORD` Basic Auth credentials created during the setup wizard on first launch unless you explicitly disabled it. + ```yaml service: AdguardTeam/AdGuardHome: @@ -66,7 +67,7 @@ service: web_url: https://github.com/advplyr/audiobookshelf/releases/tag/v{{ version }} ``` -## aizhimou/pigeon-pod: +## aizhimou/pigeon-pod Source: https://github.com/aizhimou/pigeon-pod ```yaml service: @@ -158,9 +159,7 @@ service: ## dani-garcia/vaultwarden Source: https://github.com/dani-garcia/vaultwarden - -- deployed_version - Requires version `1.25.0` of Vaultwarden - +> deployed_version - Requires version `1.25.0` of Vaultwarden ```yaml service: dani-garcia/vaultwarden: @@ -204,7 +203,7 @@ service: ## dgtlmoon/changedetection.io Source: https://github.com/dgtlmoon/changedetection.io -- You must use the API Key created: `Settings > API > API Access` +> You must use the API Key created: `Settings > API > API Access` ```yaml service: dgtlmoon/changedetection.io: @@ -301,7 +300,7 @@ service: ## firefly-iii/firefly-iii Source: https://github.com/firefly-iii/firefly-iii -To get the deployed_version you need a `Personal-Access-Token` from your Firefly III instance. ([instructions](https://docs.firefly-iii.org/how-to/firefly-iii/features/api/#personal-access-tokens)) +> To get the `deployed_version` you need a `Personal-Access-Token` from your Firefly III instance. ([instructions](https://docs.firefly-iii.org/how-to/firefly-iii/features/api/#personal-access-tokens)) ```yaml service: @@ -343,6 +342,25 @@ service: web_url: https://github.com/FlareSolverr/FlareSolverr/releases/tag/v{{ version }} ``` +## Forgejo +```yaml +service: + Forgejo: + latest_version: + type: url + url: https://code.forgejo.org/api/v1/repos/forgejo/forgejo/releases + url_commands: + - type: regex + regex: "['\"]tag_name['\"]: *['\"]v?([0-9.]+)['\"]" + deployed_version: + type: url + url: http://git.example.com + regex: Powered by Forgejo.*\s+Version:\s+([0-9.]+) + dashboard: + icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/forgejo.png + web_url: https://codeberg.org/forgejo/forgejo/releases/tag/v{{ version }} +``` + ## FreshRSS/FreshRSS Source: https://github.com/FreshRSS/FreshRSS ```yaml @@ -363,9 +381,9 @@ service: ## gitlab-org/gitlab Source: https://gitlab.com/gitlab-org/gitlab -- To get the latest version of the 'Enterprise Edition', change the `ce` to `ee` in the `url_commands` `regex`. + To get the latest version of the 'Enterprise Edition', change the `ce` to `ee` in the `url_commands` `regex`. -- deployed_version - Requires an `Access_Token` from your GitLab instance. ([instructions](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html#create-a-personal-access-token)) +> deployed_version - Requires an `Access_Token` from your GitLab instance. ([instructions](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html#create-a-personal-access-token)) ```yaml service: @@ -429,30 +447,36 @@ service: icon: https://raw.githubusercontent.com/go-gitea/gitea/main/public/img/logo.png ``` -## go-vikunja/api -Source: https://github.com/go-vikunja/api +## go-vikunja/vikunja +Source: https://github.com/go-vikunja/vikunja ```yaml service: - go-vikunja/api: + go-vikunja/vikunja: latest_version: - type: url - url: https://github.com/go-vikunja/api/tags + type: github + url: go-vikunja/vikunja url_commands: - type: regex - regex: \/releases\/tag\/v?([0-9.]+)\" + regex: v([0-9.]+) + require: + docker: + type: hub + image: vikunja/vikunja + tag: '{{ version }}' deployed_version: - url: https://vikunja.example.io/api/v1/info + type: url + url: http://vikunja.example.com/api/v1/info json: version regex: v?([0-9.]+) dashboard: - web_url: https://github.com/go-vikunja/api/blob/main/CHANGELOG.md + web_url: https://github.com/go-vikunja/vikunja/releases/tag/v{{ version }} icon: https://vikunja.io/images/vikunja.png ``` ## goauthentik/authentik Source: https://github.com/goauthentik/authentik -- deployed_version - Requires an `API_Token` with API Access rights. (can be done at `Directory/Tokens & App password` / `/if/admin/#/core/tokens` as of '2022.4.1') +> deployed_version - Requires an `API_Token` with API Access rights. (can be done at `Directory/Tokens & App password` / `/if/admin/#/core/tokens` as of '2022.4.1') ```yaml service: goauthentik/authentik: @@ -462,6 +486,11 @@ service: url_commands: - type: regex regex: version\/([0-9.]+[0-9]+(?:-rc[0-9])?) + require: + docker: + type: ghcr + image: goauthentik/server + tag: '{{ version }}' deployed_version: url: https://authentik.example.io/api/v3/admin/version/ headers: @@ -667,7 +696,7 @@ service: ## home-assistant/core Source: https://github.com/home-assistant/core -- deployed_version - `API_Token` obtained by navigating to '/profile' and creating a 'Long-Lived Access Token'. ([instructions](https://developers.home-assistant.io/docs/auth_api/#long-lived-access-token)) +> deployed_version - `API_Token` obtained by navigating to '/profile' and creating a 'Long-Lived Access Token'. ([instructions](https://developers.home-assistant.io/docs/auth_api/#long-lived-access-token)) ```yaml service: home-assistant/core: @@ -689,6 +718,7 @@ service: ## immich-app/immich Source: https://github.com/immich-app/immich +> deployed_version - Requires an `API_KEY` which can be retrieved at `Account Settings/API Keys` ```yaml service: immich-app/immich: @@ -706,7 +736,7 @@ service: regex: ^v([0-9.]+)$ headers: - key: x-api-key - value: + value: ${IMMICH_API_KEY} dashboard: icon: https://raw.githubusercontent.com/immich-app/immich/main/web/static/immich-logo.svg web_url: https://github.com/immich-app/immich/releases/tag/v{{ version }} @@ -772,7 +802,7 @@ service: ## Lidarr/Lidarr Source: https://github.com/Lidarr/Lidarr -- deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` +> deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` ```yaml service: Lidarr/Lidarr: @@ -826,6 +856,11 @@ service: latest_version: type: github url: louislam/uptime-kuma + require: + docker: + type: hub + image: louislam/uptime-kuma + tag: '{{ version }}-slim' deployed_version: url: https://status.example.io/metrics regex: app_version{version=\"([0-9.]+)\",major=\"[0-9]+\",minor=\"[0-9]+\",patch=\"[0-9]+\"} @@ -860,7 +895,7 @@ service: ## matomo-org/matomo Source: https://github.com/matomo-org/matomo -- deployed_version - `TOKEN` can be generated in the personal settings under security. ([instructions](https://matomo.org/faq/general/faq_114/)) +> deployed_version - `TOKEN` can be generated in the personal settings under security. ([instructions](https://matomo.org/faq/general/faq_114/)) ```yaml service: matomo-org/matomo: @@ -948,7 +983,7 @@ service: ## morpheus65535/bazarr Source: https://github.com/morpheus65535/bazarr -- deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` +> deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` ```yaml service: morpheus65535/bazarr: @@ -971,7 +1006,7 @@ service: ## n8n-io/n8n Source: https://github.com/n8n-io/n8n -- If you deploy in docker, you must add this environment: `N8N_METRICS=true` +> If you deploy in docker, you must add this environment: `N8N_METRICS=true` ```yaml service: n8n-io/n8n: @@ -1018,6 +1053,11 @@ service: url_commands: - type: regex regex: v([0-9.]+)$ + require: + docker: + type: hub + image: nextcloud + tag: '{{ version }}-fpm-alpine' deployed_version: url: https://nextcloud.example.io/status.php json: versionstring @@ -1064,7 +1104,7 @@ service: ## opnsense/core Source: https://github.com/opnsense/core -- deployed_version - Create an API Key. ([instructions](https://docs.opnsense.org/development/how-tos/api.html#creating-keys)) +> deployed_version - Create an API Key. ([instructions](https://docs.opnsense.org/development/how-tos/api.html#creating-keys)) ```yaml service: opnsense/core: @@ -1088,7 +1128,7 @@ service: ## outline/outline Source: https://github.com/outline/outline -- You must create a API Key: `Settings > API & Apps > + New API key...` +> You must create a API Key: `Settings > API & Apps > + New API key...` ```yaml service: outline/outline: @@ -1147,7 +1187,7 @@ service: ## Plex Media Server Source: https://plex.tv -- deployed_version - Requires a `TOKEN`. Instructions to get one [here](https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/). +> deployed_version - Requires a `TOKEN`. Instructions to get one [here](https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/). ```yaml service: Plex Media Server: @@ -1214,7 +1254,7 @@ service: ## Prowlarr/Prowlarr Source: https://github.com/Prowlarr/Prowlarr -- deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` +> deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` ```yaml service: Prowlarr/Prowlarr: @@ -1257,7 +1297,7 @@ service: ## pterodactyl/wings Source: https://github.com/pterodactyl/wings -- deployed_version - Needs the node token which can be found in the admin GUI in the node configuration. ([instructions](https://dashflo.net/docs/api/pterodactyl/v1/#authentication)) +> deployed_version - Needs the node token which can be found in the admin GUI in the node configuration. ([instructions](https://dashflo.net/docs/api/pterodactyl/v1/#authentication)) ```yaml service: pterodactyl/wings: @@ -1306,7 +1346,7 @@ service: ## Radarr/Radarr Source: https://github.com/Radarr/Radarr -- deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` +> deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` ```yaml service: Radarr/Radarr: @@ -1332,7 +1372,7 @@ service: ## rancher/rancher Source: https://github.com/rancher/rancher -- deployed_version - An API key must be created. This key is constructed in the format of `:`. ([instructions](https://rancher.com/docs/rancher/v2.5/en/user-settings/api-keys/#creating-an-api-key)) +> deployed_version - An API key must be created. This key is constructed in the format of `:`. ([instructions](https://rancher.com/docs/rancher/v2.5/en/user-settings/api-keys/#creating-an-api-key)) ```yaml service: rancher/rancher: @@ -1357,7 +1397,7 @@ service: ## Readarr/Readarr Source: https://github.com/Readarr/Readarr -- deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` +> deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` ```yaml service: Readarr/Readarr: @@ -1492,7 +1532,7 @@ service: ## Sonarr/Sonarr Source: https://github.com/Sonarr/Sonarr -- deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` +> deployed_version - Requires an `API_KEY` which can be retrieved at `Settings/General/Security/API Key` ```yaml service: Sonarr/Sonarr: @@ -1518,7 +1558,7 @@ service: ## Tautulli/Tautulli Source: https://github.com/Tautulli/Tautulli -- deployed_version - Requires `API_KEY` on the url, you can get it at `Settings/Web Interface/API`. +> deployed_version - Requires `API_KEY` on the url, you can get it at `Settings/Web Interface/API`. ```yaml service: Tautulli/Tautulli: From 2f4fee0318c4bf59ff1caa313b5b9db794915b5a Mon Sep 17 00:00:00 2001 From: hedger Date: Sun, 8 Feb 2026 20:30:53 +0000 Subject: [PATCH 3/5] typo fix --- content/en/docs/Examples/services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/Examples/services.md b/content/en/docs/Examples/services.md index d5e0c45..7401920 100644 --- a/content/en/docs/Examples/services.md +++ b/content/en/docs/Examples/services.md @@ -718,7 +718,7 @@ service: ## immich-app/immich Source: https://github.com/immich-app/immich -> deployed_version - Requires an `API_KEY` which can be retrieved at `Account Settings/API Keys` +> deployed_version - Requires an `IMMICH_API_KEY` which can be retrieved at `Account Settings/API Keys` ```yaml service: immich-app/immich: From 05c022dfeaea1c09b84732ccfbd6e1f063d13145 Mon Sep 17 00:00:00 2001 From: hedger Date: Sun, 8 Feb 2026 20:35:41 +0000 Subject: [PATCH 4/5] added source links --- content/en/docs/Examples/services.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/content/en/docs/Examples/services.md b/content/en/docs/Examples/services.md index 7401920..3904cd4 100644 --- a/content/en/docs/Examples/services.md +++ b/content/en/docs/Examples/services.md @@ -136,6 +136,7 @@ service: ``` ## bitmagnet-io/bitmagnet +Source: https://github.com/bitmagnet-io/bitmagnet ```yaml service: bitmagnet-io/bitmagnet: @@ -181,6 +182,7 @@ service: ``` ## Freika/dawarich +Source: https://github.com/Freika/dawarich ```yaml service: Freika/dawarich: @@ -343,6 +345,7 @@ service: ``` ## Forgejo +Source: https://codeberg.org/forgejo ```yaml service: Forgejo: @@ -827,6 +830,7 @@ service: ``` ## linkwarden/linkwarden +Source: https://github.com/linkwarden/linkwarden ```yaml service: linkwarden/linkwarden: @@ -948,9 +952,8 @@ service: ``` ## moghtech/komodo - -- `deployed_version` requires a token pair, `KOMODO_API_KEY` and `KOMODO_API_SECRET`. Add a service user with limited permissions and generate an API key for him. - +Source: https://github.com/moghtech/komodo +>`deployed_version` requires a token pair, `KOMODO_API_KEY` and `KOMODO_API_SECRET`. Add a service user with limited permissions and generate an API key for him. ```yaml service: moghtech/komodo: @@ -1157,9 +1160,8 @@ service: ``` ## paperless-ngx/paperless-ngx - -- deployed_version - Requires a `PAPERLESS_NGX_API_KEY`. Create a service user and generate a token in the profile. - +Source: https://github.com/paperless-ngx/paperless-ngx +> deployed_version - Requires a `PAPERLESS_NGX_API_KEY`. Create a service user and generate a token in the profile. ```yaml service: paperless-ngx/paperless-ngx: @@ -1319,7 +1321,7 @@ service: ``` ## qbittorrent/qBittorrent - +Source: https://github.com/linuxserver/docker-qbittorrent ```yaml service: qbittorrent/qBittorrent: From de724e51fe25d4bf065a63a1b773c1d34be95a52 Mon Sep 17 00:00:00 2001 From: hedger Date: Sun, 8 Feb 2026 20:58:23 +0000 Subject: [PATCH 5/5] fixed path & RE for qBt --- content/en/docs/Examples/services.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/Examples/services.md b/content/en/docs/Examples/services.md index 3904cd4..6c1dbc0 100644 --- a/content/en/docs/Examples/services.md +++ b/content/en/docs/Examples/services.md @@ -1327,10 +1327,10 @@ service: qbittorrent/qBittorrent: latest_version: type: github - url: qbittorrent/qBittorrent + url: linuxserver/docker-qbittorrent url_commands: - type: regex - regex: release-([0-9.]+) + regex: ^([0-9.]+)- require: docker: type: hub