Hi there! This is a feed of "registered" Singularity registries. You can submit a pull request (PR) to this repo if you have deployed a Singularity Registry with containers to share!
You have two options:
You can have your registry generate the metadata for you, fork and clone this repository, add the file to the _registries folder, and submit a PR. Complete instructions are provided here.
You can also produce this file manually, although it's more error prone you can fix with results of our testing. Here are specific instructions:
- Fork the repo, clone it to your local computer.
- Next, copy one of the current registry pages under _registries. Fill in your appropriate information, and be sure to look at our assets/img/registry folder to choose a robot image that you like. Feel free to add your institution image, or another robot! Here is an example registry:
---
layout: registry
title: "Stanford University"
base: https://containers.stanford.edu
date: 2017-08-29 16:54:46
author: Vanessa Sochat
categories:
- registry
img: robots/robot1.png
thumb: robots/robot1.png
tagged: public, academic, hpc
institution: Stanford University
---
Stanford Containers is a registry of containers for Stanford University that doesn't exist yet!
The name of the markdown file MUST coincide with the REGISTRY_URI you have chosen for your endpoint. Thus, if my registry identifier is taco
then the file would need to be called taco-registry.md
. Note that the images robots/robot1.png
are found in the assets/img/registry
folder.
You should generally choose the same image for your thumbnail
and img
but we've provided both so you can customize.
- When you are ready to test, run
jekyll serve
.
We run basic tests to ensure that the following matches up. For matching, we use the identifier endpoint served by your registry, which typically looks like {{domain}}/api/registry/identity
. Specifically:
- the file you add in _registries is named according to your registry uri (eg
taco
-->taco-registry.md
) - the
base
field must return 200 response, along with the identifier endpoint - the uri we parse from the file (eg,
taco
) must match to theid
served by the endpoint
We will be adding more search and browsability, along with tests that will be run regularly to ensure the health of your registry. For now, enjoy! And please contribute to both projects via feedback and help.