Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/mthalman/dockerregistryclient
- Owner: mthalman
- License: mit
- Created: 2020-08-14T17:54:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-07T22:17:34.000Z (2 months ago)
- Last Synced: 2024-10-06T12:58:38.440Z (about 2 months ago)
- Language: C#
- Homepage:
- Size: 120 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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);
}
```