Returns the set of schemes supported by this URI fetcher plugin.
| 76 | |
| 77 | // Returns the set of schemes supported by this URI fetcher plugin. |
| 78 | static set<string> schemes() |
| 79 | { |
| 80 | return { |
| 81 | "docker", // Fetch image manifest and blobs. |
| 82 | "docker-manifest", // Fetch image manifest only. |
| 83 | "docker-blob" // Fetch a single image blob. |
| 84 | }; |
| 85 | } |
| 86 | |
| 87 | void commandDiscarded(const Subprocess& s, const string& cmd) |
| 88 | { |