Docker certificate issues since 17/05
Posted: Tuesday 20 May 2025 15:35
Hi, I am using the Domoticz docker image (latest).
Since 17/05/25 a script wasn't working anymore.
After some debugging it was a curl command that stopped working
Didn't notice this at first since I used curl -s .
Curl worked for http but not for https urls.
So, after some googling, in the container I did an
After that my script started working again.
Put this in the customstart.sh for now, but this info might be usefull for others and probably should be fixed ?
Since 17/05/25 a script wasn't working anymore.
After some debugging it was a curl command that stopped working
Code: Select all
curl: error setting certificate file: /etc/ssl/certs/ca-certificates.crt
Curl worked for http but not for https urls.
So, after some googling, in the container I did an
Code: Select all
apt-get update && apt-get install -y ca-certificates
Put this in the customstart.sh for now, but this info might be usefull for others and probably should be fixed ?