docs: add troubleshooting for permission issues
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
32c5bf04b8
commit
a0cd17a257
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: Errors when uploading icons / during backups
|
||||
---
|
||||
|
||||
:::info
|
||||
This is specific to the docker-compose installation, if you're running into issues on Kubernetes please open a GitHub issue.
|
||||
:::
|
||||
|
||||
This issue is most likely caused by permissions. Docker creates bound volumes as root, but the authentik processes don't run as root.
|
||||
|
||||
This will cause issues with icon uploads (for Applications), background uploads (for Flows) and local backups.
|
||||
|
||||
To fix these issues, run these commands in the folder of your docker-compose file:
|
||||
|
||||
```shell
|
||||
sudo chown 1000:1000 backups/
|
||||
sudo chown 1000:1000 media/
|
||||
sudo chown 1000:1000 custom-templates/
|
||||
```
|
|
@ -160,6 +160,7 @@ module.exports = {
|
|||
"troubleshooting/access",
|
||||
"troubleshooting/emails",
|
||||
"troubleshooting/login",
|
||||
"troubleshooting/image_upload_backup",
|
||||
],
|
||||
},
|
||||
{
|
||||
|
|
Reference in New Issue