DEV Community

Discussion on: How to run your own docker registry with password, SSL and S3 backend

Collapse
 
bogdaaamn profile image
Bogdan Covrig • Edited

That's insanely useful, thank you!

Does Docker allow to pull images from an unsecured registry? I mean the advantages of using a certificate are obvious, but for beginning or testing is possible not to use one?

Collapse
 
chen profile image
Chen • Edited

Yes, you can do that with the limitation of not having basic-auth.

You need to update your /etc/docker/daemon.json config file on the client:

{
  "insecure-registries" : ["myregistrydomain.com:5000"]
}

Check out the steps at docs.docker.com/registry/insecure/