navy
Version:
Quick and powerful development environments using Docker and Docker Compose
13 lines (12 loc) • 463 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.restSpecification = exports.MEDIA_TYPES = void 0;
const restSpecification = exports.restSpecification = {
operation: (registry, endpoint) => `https://${registry}/v2/${endpoint}`,
getManifest: (repository, tag) => `${repository}/manifests/${tag}`
};
const MEDIA_TYPES = exports.MEDIA_TYPES = {
FAT_MANIFEST: 'application/vnd.docker.distribution.manifest.list.v2+json'
};