Skip to content

Commit 648955c

Browse files
committed
Address acrolinx feedback
Signed-off-by: Steve Lasker <[email protected]>
1 parent 916ce4f commit 648955c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/container-registry/container-registry-oci-artifacts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ echo 'Readme Content' > readme.md
6767
```
6868

6969
The following step pushes the `readme.md` file to `<myregistry>.azurecr.io/samples/artifact:readme`.
70-
- The registry is identified with the fully qualified registry name `<myregistry>.azurecr.io` (all lowercase), followed by the namespace and repo : `/samples/artifact`.
70+
- The registry is identified with the fully qualified registry name `<myregistry>.azurecr.io` (all lowercase), followed by the namespace and repo: `/samples/artifact`.
7171
- The artifact is tagged `:readme`, to identify it uniquely from other artifacts listed in the repo (`:latest, :v1, :v1.0.1`).
7272
- The root artifact, an artifact that doesn't reference another, sets the type through the `-config` parameter.
7373
- `/dev/null` represents an empty config object, where the value `:readme/example` identifies the artifact type.
7474
- `:readme/example` differentiates it from a container image, which uses `application/vnd.oci.image.config.v1+json`.
7575
- The `./readme.md` identifies the file uploaded, and the `:application/markdown` represents the [IANA `mediaType`][iana-mediatypes] of the file.
76-
For more information, see [OCI Artifact Authors Guidance](https://github.com/opencontainers/artifacts/blob/main/artifact-authors.md) for additional information.
76+
For more information, see [OCI Artifact Authors Guidance](https://github.com/opencontainers/artifacts/blob/main/artifact-authors.md).
7777

7878
Use the `oras push` command to push the file to your registry.
7979

articles/container-registry/container-registry-oras-artifacts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Storing individual OCI Artifacts are covered in [Push and pull OCI artifact](con
2828

2929
## Preview limitations
3030

31-
OCI Artifact Manifest support ([OCI 1.1 specification][oci-1_1-spec]) is available in all Azure public regions. Azure China and government clouds are not yet supported.
31+
OCI Artifact Manifest support ([OCI 1.1 specification][oci-1_1-spec]) is available in all Azure public regions. Azure China and government clouds aren't yet supported.
3232

3333
## Configure a registry
3434

@@ -152,7 +152,7 @@ oras attach $IMAGE \
152152

153153
### Sign the SBoM
154154

155-
Artifacts that are pushed as references, typically do not have tags as they are considered part of the subject artifact. To push a signature to an artifact that is a child of another artifact, use the `oras discover` with `--artifact-type` filtering to find the digest.
155+
Artifacts that are pushed as references, typically don't have tags as they're considered part of the subject artifact. To push a signature to an artifact that is a child of another artifact, use the `oras discover` with `--artifact-type` filtering to find the digest.
156156

157157
```bash
158158
SBOM_DIGEST=$(oras discover -o json \

0 commit comments

Comments
 (0)