Docker::Registry

Docker Registry is an alternative implementation for the private docker registry provided by docker. It provides the following:

  1. Export contents of an image and all it's layers as a tar.gz file(docker save).
  2. Import contents of an image and all it's layers(docker import).
  3. Listing Repositories.
  4. Listing different version of a particular repository.
  5. Better access control via AWS IAM Roles.
  6. Delete old docker images.
  7. An immutable representation of the docker image history at a particular point in time.

Installation

Add this line to your application's Gemfile:

gem 'docker-registry'

And then execute:

$ bundle

Or install it yourself as:

$ gem install docker-registry

Usage

TODO: Write usage instructions here

Contributing

  1. Fork it ( https://github.com/[my-github-username]/docker-registry/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request