aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/troubleshooting.md
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 /docs/troubleshooting.md
parentb7cd8f9482e6836a96b354b11595b03b9c3d67cd (diff)
downloadhomer-05912080962ad6d0c09bc9f79f82de58663a5fac.tar.gz
homer-05912080962ad6d0c09bc9f79f82de58663a5fac.tar.zst
homer-05912080962ad6d0c09bc9f79f82de58663a5fac.zip
Minor doc fixes (#595)
Diffstat (limited to 'docs/troubleshooting.md')
-rw-r--r--docs/troubleshooting.md2
1 files changed, 1 insertions, 1 deletions
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/`)