Merge branch 'tutorial' of https://bitbucket.org/yackob03/quay into tutorial
This commit is contained in:
commit
ffd0bc2104
6 changed files with 5 additions and 6 deletions
|
@ -36,7 +36,6 @@ start the workers:
|
||||||
|
|
||||||
```
|
```
|
||||||
STACK=prod python -m workers.diffsworker -D
|
STACK=prod python -m workers.diffsworker -D
|
||||||
STACK=prod python -m workers.dockerfilebuild -D
|
|
||||||
STACK=prod python -m workers.webhookworker -D
|
STACK=prod python -m workers.webhookworker -D
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1234,7 +1234,7 @@ def request_repo_build(namespace, repository):
|
||||||
'build_uuid': build_request.uuid,
|
'build_uuid': build_request.uuid,
|
||||||
'namespace': namespace,
|
'namespace': namespace,
|
||||||
'repository': repository,
|
'repository': repository,
|
||||||
}))
|
}), retries_remaining=1)
|
||||||
|
|
||||||
log_action('build_dockerfile', namespace,
|
log_action('build_dockerfile', namespace,
|
||||||
{'repo': repository, 'namespace': namespace,
|
{'repo': repository, 'namespace': namespace,
|
||||||
|
|
|
@ -2997,7 +2997,7 @@ p.editable:hover i {
|
||||||
}
|
}
|
||||||
|
|
||||||
.angular-tour-ui-element.overlay .tour-title {
|
.angular-tour-ui-element.overlay .tour-title {
|
||||||
background-color: #5bc0de;
|
background-color: #3276b1;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<div class="collapse navbar-collapse navbar-ex1-collapse">
|
<div class="collapse navbar-collapse navbar-ex1-collapse">
|
||||||
<ul class="nav navbar-nav">
|
<ul class="nav navbar-nav">
|
||||||
<li><a ng-href="/repository/" target="{{ appLinkTarget() }}">Repositories</a></li>
|
<li><a ng-href="/repository/" target="{{ appLinkTarget() }}">Repositories</a></li>
|
||||||
<li><a href="http://docs.quay.io/">Documentation</a></li>
|
<li><a href="http://docs.quay.io/" target="_blank">Docs</a></li>
|
||||||
<li><a ng-href="/tutorial/" target="{{ appLinkTarget() }}">Tutorial</a></li>
|
<li><a ng-href="/tutorial/" target="{{ appLinkTarget() }}">Tutorial</a></li>
|
||||||
<li><a ng-href="/plans/" target="{{ appLinkTarget() }}">Pricing</a></li>
|
<li><a ng-href="/plans/" target="{{ appLinkTarget() }}">Pricing</a></li>
|
||||||
<li><a ng-href="/organizations/" target="{{ appLinkTarget() }}">Organizations</a></li>
|
<li><a ng-href="/organizations/" target="{{ appLinkTarget() }}">Organizations</a></li>
|
||||||
|
|
|
@ -2550,7 +2550,7 @@ quayApp.directive('buildLogCommand', function () {
|
||||||
return title;
|
return title;
|
||||||
}
|
}
|
||||||
|
|
||||||
return '<i class="fa fa-hdd-o"></i> <a href="' + registryHandlers[registry](pieces) + '">' + title + '</a>';
|
return '<i class="fa fa-hdd-o"></i> <a href="' + registryHandlers[registry](pieces) + '" target="_blank">' + title + '</a>';
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="checkbox">
|
<div class="checkbox">
|
||||||
<label>
|
<label>
|
||||||
<input name="showSudo" type="checkbox" ng-model="tour.tourScope.showSudo" style="display: inline-block; margin-left: 0px; margin-right: 10px;">
|
<input name="showSudo" type="checkbox" ng-model="tour.tourScope.showSudo" style="display: inline-block; margin-left: 0px; margin-right: 10px;">
|
||||||
Start all commands with <code>sudo</code>
|
My OS requires me to run all <code>docker</code> commands with <code>sudo</code>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in a new issue