Add dtr screenshot (#3036)

* Fix screenshot for Install Docker Trusted Registry

* Fix screenshot for page manage-images

* Fix screenshot for Delete images

* Fix screenshots for Pull and push images

* Fix Monitor Docker Trusted Registry
This commit is contained in:
Julien Maitrehenry 2017-04-25 14:27:15 -04:00 committed by Joao Fernandes
parent 5c2b6663c4
commit 530ea2777e
14 changed files with 8 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 287 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 328 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 155 KiB

After

Width:  |  Height:  |  Size: 300 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 266 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 296 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 318 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 285 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 155 KiB

After

Width:  |  Height:  |  Size: 502 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 259 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 308 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 312 KiB

View File

@ -30,7 +30,7 @@ Click **Save** to create the repository.
When creating a repository in DTR, the full name of the repository becomes
`<dtr-domain-name>/<user-or-org>/<repository-name>`. In this example, the full
name of our repository will be `dtr.company.org/dave.lauper/golang`.
name of our repository will be `dtr.local:4443/admin/golang`.
## Where to go next

View File

@ -26,18 +26,18 @@ Click on the repository to see its details.
![](../../images/pull-push-images-2.png)
To pull the 1.7 tag of the dave.lauper/golang image, run:
To pull the 1.7 tag of the admin/golang image, run:
```bash
$ docker login dtr.company.org
$ docker pull dtr.company.org/dave.lauper/golang:1.7
$ docker login dtr.local:4443
$ docker pull dtr.local:4443/admin/golang:1.7
```
## Push an image
Before you can push an image to DTR you need to [create a repository](index.md)
to store the image. In this example the full name of our repository is
`dtr.company.org/dave.lauper/golang`.
`dtr.local/admin/golang`.
### Tag the image
@ -50,7 +50,7 @@ from, and where it will be pushed to.
$ docker pull golang:1.7
# Tag the golang:1.7 image with the full repository name we've created in DTR
$ docker tag golang:1.7 dtr.company.org/dave.lauper/golang:1.7
$ docker tag golang:1.7 dtr.local:4443/admin/golang:1.7
```
### Push the image
@ -59,8 +59,8 @@ Now that you have tagged the image, you only need to authenticate and push the
image to DTR.
```bash
$ docker login dtr.company.org
$ docker push dtr.company.org/dave.lauper/golang:1.7
$ docker login dtr.local:4443
$ docker push dtr.local:4443/admin/golang:1.7
```
Go back to the **DTR web UI** to validate that the tag was successfully pushed.