mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-01 11:12:24 +02:00

It contains utilities to interact with OCI registries, like getting the list of published tags and getting the content of a manifest. It does so via the use of the Docker Registry API v2 [0]. The script has been added to the `dev_scripts`, and is also installed on the system under `dangerzone-image`. [0] https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry
10 lines
132 B
Python
10 lines
132 B
Python
class UpdaterError(Exception):
|
|
pass
|
|
|
|
|
|
class ImageNotFound(UpdaterError):
|
|
pass
|
|
|
|
|
|
class RegistryError(UpdaterError):
|
|
pass
|