Skip to content

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

License

Notifications You must be signed in to change notification settings

mthalman/DockerRegistryClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Registry Client

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

Example Usage

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

Download

Available from NuGet at https://www.nuget.org/packages/Valleysoft.DockerRegistryClient

About

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

Resources

License

Stars

Watchers

Forks

Languages