aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIvan Barsukov <barsukox@gmail.com>2023-02-07 08:33:33 +0100
committerGitHub <noreply@github.com>2023-02-07 08:33:33 +0100
commit05912080962ad6d0c09bc9f79f82de58663a5fac (patch)
treeca5b1de2fd1c69961c933a45aaa1633595ac07de
parentb7cd8f9482e6836a96b354b11595b03b9c3d67cd (diff)
downloadhomer-05912080962ad6d0c09bc9f79f82de58663a5fac.tar.gz
homer-05912080962ad6d0c09bc9f79f82de58663a5fac.tar.zst
homer-05912080962ad6d0c09bc9f79f82de58663a5fac.zip
Minor doc fixes (#595)
-rw-r--r--docs/customservices.md2
-rw-r--r--docs/troubleshooting.md2
-rw-r--r--dummy-data/README.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/customservices.md b/docs/customservices.md
index 8b94cad..82114c2 100644
--- a/docs/customservices.md
+++ b/docs/customservices.md
@@ -167,7 +167,7 @@ For AdGuard Home you need to set the type to AdGuard, if you have somes issues a
167This service displays info about the total number of containers managed by your Portainer instance. 167This service displays info about the total number of containers managed by your Portainer instance.
168In order to use it, you must be using Portainer version 1.11 or later. Generate an access token from the UI and pass 168In order to use it, you must be using Portainer version 1.11 or later. Generate an access token from the UI and pass
169it to the apikey field. 169it to the apikey field.
170By default, every connected environments will be checked. To select specific ones,add an "environments" entry which can be a simple string or an array containing all the selected environments name. 170By default, every connected environments will be checked. To select specific ones, add an "environments" entry which can be a simple string or an array containing all the selected environments name.
171 171
172See https://docs.portainer.io/v/ce-2.11/user/account-settings#access-tokens 172See https://docs.portainer.io/v/ce-2.11/user/account-settings#access-tokens
173 173
diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md
index 8a0d11d..6ac0b8a 100644
--- a/docs/troubleshooting.md
+++ b/docs/troubleshooting.md
@@ -10,7 +10,7 @@ $ docker logs homer
10Assets directory not writable. Check assets directory permissions & docker user or skip default assets install by setting the INIT_ASSETS env var to 0 10Assets directory not writable. Check assets directory permissions & docker user or skip default assets install by setting the INIT_ASSETS env var to 0
11``` 11```
12 12
13In this case you need to make sure your mounted assests directory have the same GID / UID the container user have (default 1000:1000), and that the read and write permission is granted for the user or the group. 13In this case you need to make sure your mounted assets directory have the same GID / UID the container user have (default 1000:1000), and that the read and write permission is granted for the user or the group.
14 14
15You can either: 15You can either:
16- Update your assets directory permissions (ex: `chown -R 1000:1000 /your/assets/folder/`, `chmod -R u+rw /your/assets/folder/`) 16- Update your assets directory permissions (ex: `chown -R 1000:1000 /your/assets/folder/`, `chmod -R u+rw /your/assets/folder/`)
diff --git a/dummy-data/README.md b/dummy-data/README.md
index 78b2243..6a54be3 100644
--- a/dummy-data/README.md
+++ b/dummy-data/README.md
@@ -18,5 +18,5 @@ Example:
18 18
19```sh 19```sh
20mkdir pihole 20mkdir pihole
21curl http://my-pihole.me/admin/api.php -o pihole/api.php # /admin is omited because for PiHole, the implementation expect it to be in the base url (`url` or `endpoint` property) 21curl http://my-pihole.me/admin/api.php -o pihole/api.php # /admin is omitted because for PiHole, the implementation expect it to be in the base url (`url` or `endpoint` property)
22``` 22```