diff --git a/static/css/quay.css b/static/css/quay.css index 34c5788c0..306322197 100644 --- a/static/css/quay.css +++ b/static/css/quay.css @@ -7,6 +7,15 @@ html, body { height: 100%; } +.tooltip { + word-break: normal !important; + word-wrap: normal !important; +} + +.code-info { + border-bottom: 1px dashed #aaa; +} + .content-container { padding-bottom: 70px; } @@ -831,7 +840,13 @@ p.editable:hover i { .repo .empty-message { padding: 6px; font-size: 1.8em; - color: #ccc; + color: #666; + margin-bottom: 10px; +} + +.repo .empty-description { + max-width: 600px; + padding: 6px; } .repo dl.dl-horizontal dt { @@ -1071,6 +1086,12 @@ p.editable:hover i { padding-left: 44px; } +.repo-admin .right-info { + font-size: 11px; + margin-top: 10px; + text-align: right; +} + .repo-admin .entity-search input { width: 300px; } diff --git a/static/partials/guide.html b/static/partials/guide.html index 4a49eade8..e3af803a6 100644 --- a/static/partials/guide.html +++ b/static/partials/guide.html @@ -3,24 +3,36 @@
docker pull quay.io/username/repo_name-
$ sudo docker login quay.io +Login against server at https://quay.io/v1/ +Username: myusername +Password: mypassword +Email: my@email.com+
docker tag 0u123imageid quay.io/username/repo_name+ In order to push a repository to Quay, it must be tagged with the quay.io domain and the namespace under which it will live: +
sudo docker tag 0u123imageid quay.io/username/repo_name
docker push quay.io/username/repo_name+ Once tagged, the repository can be pushed to Quay:
sudo docker push quay.io/username/repo_name+
sudo docker pull quay.io/username/repo_name
docker login quay.io+ A repository can have one or more push web hooks setup, which will be invoked whenever a successful push occurs. Web hooks can be managed from the repository's admin interface. +
+{ + "pushed_image_count": 2, + "name": "ubuntu", + "repository":"devtable/ubuntu", + "docker_url": "quay.io/devtable/ubuntu", + "updated_tags": { + "latest": "b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc" + }, + "namespace": "devtable", + "visibility": "private", + "homepage": "https://quay.io/repository/devtable/ubuntu" +} +
Webhook URL | +Web Hook URL | - + |
- + | @@ -185,6 +185,10 @@ |
sudo docker tag 0u123imageidgoeshere quay.io/{{repo.namespace}}/{{repo.name}} +sudo docker push quay.io/{{repo.namespace}}/{{repo.name}}+