Docker::Registry
Docker Registry is an alternative implementation for the private docker registry provided by docker. It provides the following:
- Export contents of an image and all it's layers as a tar.gz file(docker save).
- Import contents of an image and all it's layers(docker import).
- Listing Repositories.
- Listing different version of a particular repository.
- Better access control via AWS IAM Roles.
- Delete old docker images.
- 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
- Fork it ( https://github.com/[my-github-username]/docker-registry/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request