Skip to content

Commit

Permalink
refactor(docker): include dockerRegistry, dockerRepository in results
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Feb 8, 2019
1 parent da56512 commit 1d9167b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/datasource/docker/index.js
Expand Up @@ -349,6 +349,10 @@ async function getPkgReleases({ lookupName, registryUrls }) {
return null;
}
const releases = tags.map(version => ({ version }));
const ret = { releases };
const ret = {
dockerRegistry: registry,
dockerRepository: repository,
releases,
};
return ret;
}

0 comments on commit 1d9167b

Please sign in to comment.