docker-archive / docker-registry

This is **DEPRECATED**! Please go to https://github.com/docker/distribution
Apache License 2.0
2.88k stars 879 forks source link

Binaries? #966

Open matthughes opened 9 years ago

matthughes commented 9 years ago

Not sure if this is the right place to ask, but is there any chance of getting updates binaries into the various package managers? Centos has 0.6.8 I believe. I've built the registry before on Centos 6.x, but it's quite a pain on the 7.x image thanks to systemd/container funkiness (https://registry.hub.docker.com/_/centos/). You can't install openssl-devel for example on the library/centos:7 image as is.

My end goal is a container with apache fronting the registry with SSL. I know the docker way of dealing with this is two containers, but I'd really prefer to package a single image for my users.

dmp42 commented 9 years ago

Hello Matt,

We don't have any specific relations with distros as far as packaging this is concerned. Furthermore, we strongly recommend users to use the docker image and not the distros packages that we don't support.

Now, if you want to have a custom image, I would recommend you start your own with:

FROM registry as a starting point (if I were to do it I'd probably go with supervisor to launch both apache and the registry).

Finally, most of the effort these days is focused on https://github.com/docker/distribution the new golang version of the registry - v1 is in maintenance now.