Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pulp/crane
:warning: ⛔️ Pulp2 is EOL as of November 30 2022, for more info visit this link https://pulpproject.org/2022/09/19/pulp-2-eol/. ⛔️ docker-registry-like API with redirection, as a wsgi app
https://github.com/pulp/crane
Last synced: 13 days ago
JSON representation
:warning: ⛔️ Pulp2 is EOL as of November 30 2022, for more info visit this link https://pulpproject.org/2022/09/19/pulp-2-eol/. ⛔️ docker-registry-like API with redirection, as a wsgi app
- Host: GitHub
- URL: https://github.com/pulp/crane
- Owner: pulp
- License: gpl-2.0
- Archived: true
- Created: 2014-04-13T14:31:00.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T13:17:21.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T20:19:54.937Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 1.76 MB
- Stars: 39
- Watchers: 17
- Forks: 45
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
:warning: ⛔️ Pulp2 is EOL as of November 30 2022, for more info visit this link https://pulpproject.org/2022/09/19/pulp-2-eol/. ⛔️
crane
=====.. image:: https://travis-ci.org/pulp/crane.svg?branch=master
:target: https://travis-ci.org/pulp/crane.. image:: https://coveralls.io/repos/pulp/crane/badge.png?branch=master
:target: https://coveralls.io/r/pulp/crane?branch=masterWhat is Crane?
--------------Crane is a small read-only web application that provides enough of the docker
registry API to support "docker pull". Crane supports two modes of operation:1. Serve 302 redirects to some other location where files are
being served. A base file location URL can be specified per-repository.
This is the default mode.
2. Local content delivery. In this mode, Crane provides "X-Sendfile" headers
to the Apache web server. Apache will deliver the static files including
all its optimizations.Crane loads its data from json files stored on disk. It does not have a
database or use any other services. The json files can be generated with pulp
by publishing a docker repository.Crane is a flask app written in Python. It is very easy to deploy and has a
small footprint, so it is a great way to provide a read-only "docker pull" API
that redirects to a static file service.Advanced users can configure a search appliance to support "docker search" and
can setup repository protection using SSL certificates.See the `current development documentation `_
for more information.