/docker-registry

Docker image based on original registry v0.8.1 image to fix some s3 connection issues

Primary LanguageShellMIT LicenseMIT

Docker Registry

WARNING the original repo has fixed boto, and I recoment you to use registry:0.9.0 instead of this image.

Docker image based on original registry image to fix some S3 connection issues. The issue discussion was started here docker-archive/docker-registry#661, follow the comments for details.

You can pull builded image from Docker Hub

docker pull satyrius/registry:latest

Then run it as original image, but now you are able to use S3 Frankfurt datacenter buckets

docker run \
         -e SETTINGS_FLAVOR=s3 \
         -e AWS_BUCKET=mybucket \
         -e AWS_REGION=eu-central-1 \
         -e STORAGE_PATH=/registry \
         -e AWS_KEY=myawskey \
         -e AWS_SECRET=myawssecret \
         -e SEARCH_BACKEND=sqlalchemy \
         -p 5000:5000 \
         satyrius/registry