Skip to content

Commit

Permalink
Merge pull request #1892 from lcarva/fix-docs
Browse files Browse the repository at this point in the history
Escape curly braces in docs
  • Loading branch information
lcarva authored Aug 28, 2024
2 parents ccf0048 + 5f8e18d commit 3fad41f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/modules/ROOT/pages/configuration.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ The `policy` and `data` fields in the configuration represent the URI of the pol

=== Local File

A local file path scheme, such as the following, may be utilized.
A local file path scheme, such as the following, may be utilized.

* `file://<path>`

Expand Down Expand Up @@ -594,7 +594,7 @@ You may also use the `git::` prefix to specify a Git repository URL. The followi

NOTE: In all git URL forms, the `.git` extension is optional.

NOTE: In all git URL forms, the `?ref=<reference>` is optional and defaults to the repository's default branch.
NOTE: In all git URL forms, the `?ref=<reference>` is optional and defaults to the repository's default branch.

NOTE: In all git URL forms, the `//<path>` is optional and defaults to the root of the repository.

Expand Down Expand Up @@ -626,15 +626,15 @@ An OCI registry URL may be utilized. The following registry hosts have automatic
* gcr.io
* registry.gitlab.com
* pkg.dev
* [0-9]{12}.dkr.ecr.[a-z0-9-]*.amazonaws.com
* [0-9]\{12\}.dkr.ecr.[a-z0-9-]*.amazonaws.com
* quay.io

You may also use the `oci::` prefix to specify an OCI registry URL:

* `oci://<registry>/<repository>:<tag>`
* `oci://<registry>/<repository>@<digest>`
* `oci://<registry>/<repository>@<digest>`
* `oci::<registry>/<repository>:<tag>`
* `oci::<registry>/<repository>:<tag>@<digest>`
* `oci::<registry>/<repository>:<tag>@<digest>`

NOTE: the <tag> is optional and defaults to `latest`.
NOTE: the <digest> is optional and defaults to the latest digest.
NOTE: the <digest> is optional and defaults to the latest digest.

0 comments on commit 3fad41f

Please sign in to comment.