conf.yml not connecting #2005
|
I use docker on ubuntu server hosted by hostinger. The path that where my conf.yml file is /root/dashy/public/conf.ym. Still I cannot get Dashy to see the conf.yml file. I have tried many things over the past week trying to get this to connect and cannot. I have checked the repository for any information on how to make this happen and I cannot find any help. I am used the following to start dashy; docker run -d any suggestions would be appreciated. Everything works except that I need to create a user name and password to secure this instance. My .yml file is already created. |
Replies: 2 comments 1 reply
|
I have this same problem. I saw a bug raised some years ago but there is no fix listed. Really frustrating. I don't know what to do to get the conf.yml file read. Any suggestions would be really appreciated. I am trying to add authentication and without a working conf file I cannot add it. |
|
Solution: Config needs to be in For more info, see: https://dashy.to/docs/troubleshooting/#config-not-loading Hope that helps :) |
Solution: Config needs to be in
/user-data/conf.yml. In Docker, mount your data directory to/app/user-data/.The directory you pass on your host MUST exist already, otherwise Docker creates a file named user-data, which will break things.
And if you get permissions issues, then on your host system run
sudo chown -R 1000:1000 ~/path-to-your/user-dataFor more info, see: https://dashy.to/docs/troubleshooting/#config-not-loading
Hope that helps :)