diff options
author | SouLSLayeR <espilioto@users.noreply.github.com> | 2022-03-28 20:41:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 20:41:19 +0300 |
commit | 345dd6c194a588ab038a8cb46846f74f4b96650e (patch) | |
tree | 8887cd24450dab91efd4e92956db0a8b4bbae38b | |
parent | 585844394d7a4cc4a58e30fd42cb1f8e83ac02f7 (diff) | |
download | homer-345dd6c194a588ab038a8cb46846f74f4b96650e.tar.gz homer-345dd6c194a588ab038a8cb46846f74f4b96650e.tar.zst homer-345dd6c194a588ab038a8cb46846f74f4b96650e.zip |
Update customservices.md
-rw-r--r-- | docs/customservices.md | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/docs/customservices.md b/docs/customservices.md index cb68e1d..dead8ce 100644 --- a/docs/customservices.md +++ b/docs/customservices.md | |||
@@ -6,7 +6,16 @@ apikey included in the configuration file is exposed to anyone who can access th | |||
6 | if your homer instance is secured behind some form of authentication or access restriction. | 6 | if your homer instance is secured behind some form of authentication or access restriction. |
7 | 7 | ||
8 | Available services are in `src/components/`. Here is an overview of all custom services that are available | 8 | Available services are in `src/components/`. Here is an overview of all custom services that are available |
9 | within Homer. | 9 | within Homer: |
10 | + [PiHole](#pihole) | ||
11 | + [OpenWeatherMap](#openweathermap) | ||
12 | + [Medusa](#medusa) | ||
13 | + [Lidarr, Prowlarr, Sonarr and Radarr](#lidarr-prowlarr-sonarr-and-radarr) | ||
14 | + [PaperlessNG](#paperlessng) | ||
15 | + [Ping](#ping) | ||
16 | + [Prometheus](#prometheus) | ||
17 | + [Portainer](#portainer) | ||
18 | + [Emby](#emby) | ||
10 | 19 | ||
11 | If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. | 20 | If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. |
12 | 21 | ||
@@ -141,3 +150,16 @@ See https://docs.portainer.io/v/ce-2.11/user/account-settings#access-tokens | |||
141 | type: "Portainer" | 150 | type: "Portainer" |
142 | apikey: "MY-SUPER-SECRET-API-KEY" | 151 | apikey: "MY-SUPER-SECRET-API-KEY" |
143 | ``` | 152 | ``` |
153 | |||
154 | ## Emby | ||
155 | |||
156 | You need to set the type to Emby, provide an api key and choose which stats to show if the subtitle is disabled. | ||
157 | |||
158 | ```yaml | ||
159 | - name: "Emby" | ||
160 | logo: "assets/tools/sample.png" | ||
161 | url: "http://192.168.0.151/" | ||
162 | type: "Portainer" | ||
163 | apikey: "MY-SUPER-SECRET-API-KEY" | ||
164 | libraryType: "music" #Choose which stats to show. Can be one of: music, series or movies. | ||
165 | ``` | ||