* *: remove backup Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * fix lint Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * website/docs: add docs Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * *: final cleanup Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * ci: use correct pyproject when migrating from stable Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * website/docs: fix broken docs Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
		
			
				
	
	
		
			19 lines
		
	
	
		
			593 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			593 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
title: Errors when uploading icons
 | 
						|
---
 | 
						|
 | 
						|
:::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 media/
 | 
						|
sudo chown 1000:1000 custom-templates/
 | 
						|
```
 |