could you please give me more information about this? does hivemq repo on dockerhub has any different CA certificate which I need to download and install in ubuntu?
It looks like you’re encountering a TLS certificate verification issue when trying to pull the HiveMQ Edge Docker image. This error occurs when Docker can’t verify the authenticity of the certificate from the Docker registry.
The error message:
error pulling image configuration: download failed after attempts=6: tls: failed to verify certificate: x509: certificate signed by unknown authority
This typically happens when:
Your system doesn’t trust the Certificate Authority (CA) that signed the certificate
You’re behind a corporate proxy that performs TLS inspection
There might be network issues or misconfiguration
Troubleshooting:
First, check if you can access other Docker images: Try pulling a common image like ubuntu:latest to see if it’s a general Docker issue or specific to HiveMQ.
sudo docker pull ubuntu:latest
If this succeeds, we can focus our troubleshooting specifically on HiveMQ Edge image access. If it fails similarly, we’d need to address your Docker environment’s certificate configuration.
Please let me know the results of this test, and we’ll work together to get your HiveMQ Edge container up and running properly.
Hi, thank you for the reply,
I had a connect with client, turns out we cannot pull docker images directly from the web, need to put then into container registry first and then do docker pull.