How to Fix GitLab Registry Certificate Issue During Install/Update

Hi everyone,

If you're trying to install or update the application and you're getting certificate errors when pulling images from gitlab.hacknix.net:5050, it's likely due to the GitLab registry using an expired or invalid SSL certificate.

To work around this, you can temporarily mark the registry as "insecure" on your server. Here's how:

  1. Open the Docker daemon config file:
    sudo vim /etc/docker/daemon.json
  2. Add the following content:
    {
      "insecure-registries": ["gitlab.hacknix.net:5050"]
    }
  3. Save and exit the file.
  4. Restart the Docker service:
    sudo systemctl restart docker

After this, you should be able to install or update without certificate-related issues.

Note: This is only a temporary workaround. Once the SSL certificate is fixed on the GitLab side, you should remove this setting to restore secure Docker behavior.

Let me know if you run into any issues.

Best regards,
José