jc21 / docker-registry-ui

😎 A nice web interface for managing your Docker Registry images
MIT License
324 stars 71 forks source link

Error getaddrinfo EAI_AGAIN https https:80 #23

Closed gronono closed 3 years ago

gronono commented 4 years ago

Hello,

Running the following command :

docker run -e REGISTRY_HOST=https://docker.kube.unc.nc -p 8080:80 jc21/registry-ui 

I get the following error

WARNING: NODE_ENV value of 'production' did not match any deployment config file names.
WARNING: See https://github.com/lorenwest/node-config/wiki/Strict-Mode
WARNING: No configurations found in configuration directory:/app/config
WARNING: To disable this warning set SUPPRESS_NO_CONFIG_WARNING in the environment.
[9/7/2020] [12:51:50 AM] [Global  ] › ℹ  info      PID 6 listening on port 80 ...
[9/7/2020] [12:51:50 AM] [Global  ] › ℹ  info      Registry Host: https://docker.kube.unc.nc
[9/7/2020] [12:52:05 AM] [Express ] › ⚠  warning   Error: getaddrinfo EAI_AGAIN https https:80
    at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:58:26)

I don't understand this error. Any ideas ?

slinstaedt commented 3 years ago

REGISTRY_HOST is meant to be used without scheme prefix, so REGISTRY_HOST=docker.kube.unc.nc:443 should do the work.

gronono commented 3 years ago

Thank you.