prefix the specified name with "localhost/".
(name string)
| 96 | |
| 97 | // prefix the specified name with "localhost/". |
| 98 | func toLocalImageName(name string) string { |
| 99 | return "localhost/" + strings.TrimLeft(name, "/") |
| 100 | } |
| 101 | |
| 102 | // NameTagPair represents a RepoTag of an image. |
| 103 | type NameTagPair struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…