mirror of https://github.com/docker/docs.git
Rendering fixes
This commit is contained in:
parent
bbefe98a14
commit
16b07b27e0
notary
|
@ -16,7 +16,7 @@ This page explains advanced uses of Notary client for users who are running
|
||||||
their own Notary service. Make sure you have first read and understood how to
|
their own Notary service. Make sure you have first read and understood how to
|
||||||
[run your own Notary service](running_a_service.md) before continuing.
|
[run your own Notary service](running_a_service.md) before continuing.
|
||||||
|
|
||||||
#### An important note about the examples
|
## An important note about the examples
|
||||||
|
|
||||||
This document's command examples omit the `-s` and `-d` flags. If you do not
|
This document's command examples omit the `-s` and `-d` flags. If you do not
|
||||||
know what these options do, please read the [Getting
|
know what these options do, please read the [Getting
|
||||||
|
@ -57,6 +57,7 @@ algorithm:
|
||||||
## Add and remove Targets
|
## Add and remove Targets
|
||||||
|
|
||||||
It's simple to add targets to a trusted collection with notary CLI:
|
It's simple to add targets to a trusted collection with notary CLI:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ notary add example.com/collection v1 my_file.txt
|
$ notary add example.com/collection v1 my_file.txt
|
||||||
```
|
```
|
||||||
|
@ -67,6 +68,7 @@ file path and one or more checksums of the contents.
|
||||||
Note that this is an offline command, and we must run a `notary publish example.com/collection` for the add to take effect.
|
Note that this is an offline command, and we must run a `notary publish example.com/collection` for the add to take effect.
|
||||||
|
|
||||||
To remove targets, we use the `notary remove` command, specifying the GUN and target name.
|
To remove targets, we use the `notary remove` command, specifying the GUN and target name.
|
||||||
|
|
||||||
```
|
```
|
||||||
$ notary remove example.com/collection v1
|
$ notary remove example.com/collection v1
|
||||||
```
|
```
|
||||||
|
@ -247,7 +249,7 @@ To use the `targets/releases` role for pushing and pulling images with content t
|
||||||
follow the steps above to add and publish the delegation role with notary.
|
follow the steps above to add and publish the delegation role with notary.
|
||||||
When adding the delegation, the `--all-paths` flag should be used to allow signing all tags.
|
When adding the delegation, the `--all-paths` flag should be used to allow signing all tags.
|
||||||
|
|
||||||
# Files and state on disk
|
## Files and state on disk
|
||||||
|
|
||||||
Notary stores state in its `trust_dir` directory, which is `~/.notary` by
|
Notary stores state in its `trust_dir` directory, which is `~/.notary` by
|
||||||
default or usually `~/.docker/trust` when enabling docker content trust. Within this
|
default or usually `~/.docker/trust` when enabling docker content trust. Within this
|
||||||
|
|
Loading…
Reference in New Issue