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 d8695e8 commit 5bacbdcCopy full SHA for 5bacbdc
dockerhub/repos.go
@@ -80,6 +80,13 @@ func fetchDockerHubAllRepo() (map[string]RepoInfoList, error) {
80
}
81
82
//logger.Warn("sealos container image repo is deprecated, please use sealos cloud repo")
83
+ } else if strings.HasPrefix(repo.Name, "laf") {
84
+ versions[repo.Name] = RepoInfoList{
85
+ Repos: []RepoInfo{
86
+ {Name: repo.Name, Filter: "^v.*"},
87
+ },
88
+ ByTagRegex: true,
89
+ }
90
} else {
91
newRepos = append(newRepos, RepoInfo{Name: repo.Name})
92
0 commit comments