Empty Config Folder
So I was having issues where the changes made to default board would not save after restarting my container. Looking into the volumes, the config and icons folders are empty and the only file the db.sqlite under the data folder. This is the only error I see in the log- "ERROR App [object Object] not found". I tried spinning up a second instance but the same issue happened. Homarr appears to have proper rw permissions.
Solution:Jump to solution
@Chocothunder42 The paths are incorrect 😅 Try these:
```
- /mnt/appdata/homarr/configs:/app/data/configs
- /mnt/appdata/homarr/icons:/app/public/icons
- /mnt/appdata/homarr/data:/data...
6 Replies
Db.sqlite should be the only file in ./data
./icons should be empty until you decide to put icons in it
./config should have a default.json in there by default.
Check the folder permissions compared to homarr/docker
Wrong mounts - user error. Everything is documented here: https://homarr.dev/docs/getting-started/installation#-docker-compose
🚀 Installation | Homarr documentation
We provide multiple installation methods. Are you a newbie to Docker? We recommend Docker Compose for beginners.
Solution
@Chocothunder42 The paths are incorrect 😅 Try these:
ahh I see my error thanks! I'll try that now.
did you add the docker integration as well?
I won't be using that feature for now
looks like that worked. I have the default.json file in the configs folder. thanks for the help everybody!