sg-registry

Docker Registry using StorageGRID S3 backend storage

View on GitHub

Docker Registry using StorageGRID S3 backend storage

Setup a private Docker Registry using S3 backend as storage with SSL and username/password protected.

Pre-requisites

Installation

  1. Clone this:

     git clone https://github.com/adlytaibi/sg-registry
    
     cd sg-registry
    
  2. Generate self-signed SSL certificate

     mkdir sslkeys
    
    1. Create private key, generate a certificate signing request

       openssl genrsa -out sslkeys/registry.key 2048
      
    2. Self-sign your own certificates: (modify web to match your server)

       openssl req -x509 -nodes -newkey rsa:4096 -keyout sslkeys/registry.key -out sslkeys/registry.pem -days 365 -subj "/C=CA/ST=Ontario/L=Toronto/O=Storage/OU=Team/CN=registry"
      
  3. Create htpasswd user and password

    htpasswd -Bbc sslkeys/htpasswd registry registry
    

    Or input user’s password:

    htpasswd -Bc sslkeys/htpasswd registry
    New password: 
    Re-type new password: 
    
  4. Create docker-compose.override.yml and fill-in the following parameters or directly edit docker-compose.yml

    cat docker-compose.override.yml 
    registry:
      environment:
        REGISTRY_STORAGE_S3_ACCESSKEY: myAccessKey
        REGISTRY_STORAGE_S3_SECRETKEY: mySecretKey
        REGISTRY_STORAGE_S3_BUCKET: myBucket
        REGISTRY_STORAGE_S3_REGION: us-east-1
        REGISTRY_STORAGE_S3_REGIONENDPOINT: myStorageGRIDGateway:8082
    
  5. Start the Docker Registry container

    docker-compose up -d
    
  6. Pull a new image or tag existing image to push to the new Docker Registry

    1. (Optional) Pull an image from an exiting registry

      docker pull busybox
      Using default tag: latest
      latest: Pulling from library/busybox
      Digest: sha256:6915be4043561d64e0ab0f8f098dc2ac48e077fe23f488ac24b665166898115a
      
    2. Tag the image you want to push to the new registry

      docker tag busybox localhost:5555/busybox
      
  7. Login to the new Docker Registry

    echo registry|docker login -u registry --password-stdin localhost:5555
    Login Succeeded
    

    Or input user’s password:

    docker login -u registry localhost:5555
    Password: 
    Login Succeeded
    
  8. Push image to the new Docker Registry

    docker push localhost:5555/busybox
    The push refers to repository [localhost:5555/busybox]
    195be5f8be1d: Pushed 
    latest: digest: sha256:edafc0a0fb057813850d1ba44014914ca02d671ae247107ca70c94db686e7de6 size: 527
    

Tear-down

Troubleshooting:

Further reading

Notes

This is not an official NetApp repository. NetApp Inc. is not affiliated with the posted examples in any way.