diff --git a/src/components/ImageCard.react.js b/src/components/ImageCard.react.js index a18420b16c..e9d494ff7a 100644 --- a/src/components/ImageCard.react.js +++ b/src/components/ImageCard.react.js @@ -76,11 +76,11 @@ var ImageCard = React.createClass({ $tagOverlay.fadeOut(300); }, handleRepoClick: function () { - var repoUri = 'https://registry.hub.docker.com/'; + var repoUri = 'https://hub.docker.com/'; if (this.props.image.namespace === 'library') { repoUri = repoUri + '_/' + this.props.image.name; } else { - repoUri = repoUri + 'u/' + this.props.image.namespace + '/' + this.props.image.name; + repoUri = repoUri + 'r/' + this.props.image.namespace + '/' + this.props.image.name; } shell.openExternal(repoUri); },