Trying to get this solution to work, but im a total noob so doing something wrong. I have not added a 'data' path, do I need to?
I have managed to get and install the docker image adding port 8089 and 9090, copied over my advancedsettings.xml to the following path
docker cp /mnt/user/upload/advancedsettings.xml b393c2965ef9:/usr/share/kodi/userdata/advancedsettings.xml
only getting connection refused trying to connect to the server on port 8089, also tried copying the file to another path but then the docker wont start anymore
docker cp /mnt/user/upload/advancedsettings.xml b393c2965ef9:/usr/share/kodi/portable_data/userdata/advancedsettings.xml
My advancedsettings.xml looks like this
<advancedsettings>
<videodatabase>
<type>mysql</type>
<host>192.168.0.250</host>
<port>3306</port>
<user>kodi</user>
<pass>kodi</pass>
</videodatabase>
<musicdatabase>
<type>mysql</type>
<host>192.168.0.250</host>
<port>3306</port>
<user>kodi</user>
<pass>kodi</pass>
</musicdatabase>
<videolibrary>
<importwatchedstate>true</importwatchedstate>
<importresumepoint>true</importresumepoint>
</videolibrary>
<services>
<esallinterfaces>true</esallinterfaces>
<webserver>true</webserver>
<zeroconf>true</zeroconf>
<port>8089</port>
</services>
</advancedsettings>
Also should the docker be running in bridged or host mode? I have tried both but not working in either.