H
Homarr•5mo ago
Chocothunder42

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.
No description
No description
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...
Jump to solution
6 Replies
explosive parrot
explosive parrot•5mo ago
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
Manicraft1001
Manicraft1001•5mo ago
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
Pheasant Kyle
Pheasant Kyle•5mo ago
@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
- /mnt/appdata/homarr/configs:/app/data/configs
- /mnt/appdata/homarr/icons:/app/public/icons
- /mnt/appdata/homarr/data:/data
Chocothunder42
Chocothunder42•5mo ago
ahh I see my error thanks! I'll try that now. did you add the docker integration as well?
Pheasant Kyle
Pheasant Kyle•5mo ago
I won't be using that feature for now
Chocothunder42
Chocothunder42•5mo ago
looks like that worked. I have the default.json file in the configs folder. thanks for the help everybody!