Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mthalman/dockerregistryclient

.NET client interface for executing commands on a Docker registry's HTTP API.
https://github.com/mthalman/dockerregistryclient

Last synced: about 1 month ago
JSON representation

.NET client interface for executing commands on a Docker registry's HTTP API.

Awesome Lists containing this project

README

        

# Docker Registry Client

*A .NET client interface for executing commands on a Docker registry's HTTP API.*

## Example Usage

```csharp
RegistryClient client = new("mcr.microsoft.com");
Page tagsPage = await client.Tags.GetAsync("dotnet/sdk");
foreach (string tag in tagsPage.Value.Tags)
{
Console.WriteLine(tag);
}
```