Skip to content

Open Containers distribution spec module for Django (under development)

License

Notifications You must be signed in to change notification settings

vsoch/django-oci

Repository files navigation

django-oci

PyPI version docs/assets/img/django-oci.png

Open Containers distribution API for Django.

This repository serves a Django app that can be used to provide an opencontainers distribution (OCI) endpoint to push and pull containers. An example application is provided in tests that can be interacted with here.

Quickstart

Install django-oci::

pip install django-oci

Add it to your INSTALLED_APPS along with rest_framework

    INSTALLED_APPS = (
        ...
        'django_oci',
        'rest_framework',
        ...
    )

Add django-oci's URL patterns:

    from django_oci import urls as django_oci_urls
    urlpatterns = [
        ...
        url(r'^', include(django_oci.urls)),
        ...
    ]

See the documentation or getting started guide for more details about setup, and testing. An example application is provided and described in the getting started guide as well. The latest conformance testing is provided as well.

Many Thanks

About

Open Containers distribution spec module for Django (under development)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published