We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f88e23 commit 177421fCopy full SHA for 177421f
README.md
@@ -581,6 +581,24 @@ GetDockerClient() *client.Client
581
CalculateStats(jsonStats *types.StatsJSON) *models.Stats
582
```
583
584
+## Listing all tag versions from DockerHub
585
+
586
+Interface
587
+```go
588
+type DockerHub interface {
589
+ Tags(repostiory string) ([]string, error)
590
+}
591
+```
592
593
+Usage:
594
595
+var option Option
596
+cl := NewClient(option)
597
+tags, err := cl.Tags("chryscloud/chrysedgeproxy")
598
599
600
601
602
# Contributing
603
604
Please read `CONTRIBUTING.md` for details on our code of conduct, and the process of submitting pull requests to us.
0 commit comments