Quick Dashy Fix
Posted on February 19, 2023 (Last modified on April 3, 2024) • 1 min read • 198 wordsI ran into a tiny problem while setting up Dashy on my UnRaid server. I discovered that after installing the Dashy app the conf.yml file is setup as a directory not as a file. This prevents Dashy from starting correctly. To be fair, instructions for downloading the config are provided in the app description. When trying to run Dashy without downloading a new config file you may see a similar error about attempting to mount a directory onto a file.
Here is how the conf.yml appears in UnRaid without making any changes. As you can see the conf.yml file is actually a directory not a file.
cd /mnt/user/appdata/dashy/
rm /mnt/user/appdata/dashy/conf.yml
curl -O https://raw.githubusercontent.com/Lissy93/dashy/master/public/conf.yml
As you can see our conf.yml file is now recongnized as a file and not a directory.
Now we can proceed with configuring Dashy!