Skip to content
This repository was archived by the owner on Apr 17, 2019. It is now read-only.

Latest commit

 

History

History
22 lines (17 loc) · 858 Bytes

File metadata and controls

22 lines (17 loc) · 858 Bytes

docker-registry-postgres

This repository is based on a now deprecated version of the docker registry. It is recommended to use newer versions (>= 2) of the docker registry instead.

A containerized docker registry based on the official image, pre-configured with Postgres support for search indexing

A pre-built image is available at the Docker Hub Registry

Example usage

docker run \
    -e SETTINGS_FLAVOR=s3 \
    -e AWS_BUCKET=mybucket \
    -e STORAGE_PATH=/registry \
    -e AWS_KEY=myawskey \
    -e AWS_SECRET=myawssecret \
    -e SQLALCHEMY_INDEX_DATABASE=postgresql://user:pass@postgres_host/docker_registry \
    -p 5000:5000 \
    jsallis/docker-registry-postgres