mirror of https://github.com/docker/docs.git
Merge branch 'master' into jmorgan_bump_0.4.3
This commit is contained in:
commit
e8696d7fd5
|
@ -291,7 +291,7 @@ ImageUtil.sync = function (callback) {
|
||||||
docker: image,
|
docker: image,
|
||||||
buildLogs: [],
|
buildLogs: [],
|
||||||
createdAt: new Date(),
|
createdAt: new Date(),
|
||||||
tags: image.RepoTags,
|
tags: image.RepoTags.sort(),
|
||||||
meta: meta
|
meta: meta
|
||||||
};
|
};
|
||||||
Images.insert(imageObj);
|
Images.insert(imageObj);
|
||||||
|
@ -311,7 +311,7 @@ ImageUtil.sync = function (callback) {
|
||||||
if (imageData && imageData.RepoTags) {
|
if (imageData && imageData.RepoTags) {
|
||||||
Images.update(image._id, {
|
Images.update(image._id, {
|
||||||
$set: {
|
$set: {
|
||||||
tags: imageData.RepoTags
|
tags: imageData.RepoTags.sort()
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<a onclick="Metrics.trackEvent('container details')" href="/apps/{{name}}" class="name">{{name}}</a>
|
<a onclick="Metrics.trackEvent('container details')" href="/apps/{{name}}" class="name">{{name}}</a>
|
||||||
<small><a onclick="Metrics.trackEvent('container view image details')" href="/images/{{image._id}}">{{displayTags image.tags}}</a></small>
|
<small><a onclick="Metrics.trackEvent('container view image details')" href="/images/{{image._id}}">{{displayTags image.tags ', '}}</a></small>
|
||||||
</h5>
|
</h5>
|
||||||
<div class="options">
|
<div class="options">
|
||||||
{{#if $eq status 'READY'}}
|
{{#if $eq status 'READY'}}
|
||||||
|
|
Loading…
Reference in New Issue