Skip to content

Commit f8b9a5a

Browse files
committed
Link fixes
Signed-off-by: Steve Lasker <[email protected]>
1 parent 648955c commit f8b9a5a

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: stevelas
1010

1111
# Push and pull OCI artifacts using an Azure container registry
1212

13-
You can use an Azure container registry to store and manage [Open Container Initiative (OCI) artifacts](container-registry-image-formats.md#oci-artifacts) as well as Docker and OCI container images.
13+
You can use an [Azure container registry][acr-landing] to store and manage [Open Container Initiative (OCI) artifacts](container-registry-image-formats.md#oci-artifacts) as well as Docker and OCI container images.
1414

1515
To demonstrate this capability, this article shows how to use the [OCI Registry as Storage (ORAS)](https://github.com/deislabs/oras) CLI to push a sample artifact - a text file - to an Azure container registry. Then, pull the artifact from the registry. You can manage various OCI artifacts in an Azure container registry using different command-line tools appropriate to each artifact.
1616

@@ -163,12 +163,14 @@ az acr repository delete \
163163

164164
## Next steps
165165

166+
* Learn about [Artifact References](container-registry-oras-artifacts.md), associating signatures, software bill of materials and other reference types
166167
* Learn more about [the ORAS Project](https://oras.land/), including how to configure a manifest for an artifact
167168
* Visit the [OCI Artifacts](https://github.com/opencontainers/artifacts) repo for reference information about new artifact types
168169

169170
<!-- LINKS - external -->
170171
[iana-mediatypes]: https://www.rfc-editor.org/rfc/rfc6838
171172
<!-- LINKS - internal -->
173+
[acr-landing]: https://aka.ms/acr
172174
[acr-authentication]: /articles/container-registry/container-registry-authentication.md?tabs=azure-cli
173175
[az-acr-create]: /container-registry/container-registry-get-started-azure-cli
174176
[az-acr-repository-show]: /cli/azure/acr/repository?#az_acr_repository_show

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

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ TAG=v1
4242
IMAGE=$REGISTRY/${REPO}:$TAG
4343
```
4444

45-
To create a new registry, see [Quickstart: Create a container registry using the Azure CLI][az-acr-create]
46-
4745
Authenticate with your [individual Azure AD identity](container-registry-authentication.md?tabs=azure-cli#individual-login-with-azure-ad) using an AD token. Always use "000..." for the `USER_NAME` as the token is parsed through the `PASSWORD` variable.
4846

4947
```azurecli
@@ -222,7 +220,7 @@ ls ./download
222220

223221
## View the repository and tag listing
224222

225-
OCI Artifact Manifest enables artifact graphs to be pushed, discovered, pulled and copied without having to assign tags. This enables a tag listing to focus on the artifacts users think about, as opposed to the signatures and SBoMs that are associated with the container images, helm charts and other artifacts.
223+
The OCI Artifact Manifest enables artifact graphs to be pushed, discovered, pulled and copied without having to assign tags. Artifact manifests enables a tag listing to focus on the artifacts users think about, as opposed to the signatures and SBoMs that are associated with the container images, helm charts and other artifacts.
226224

227225
### View a list of tags
228226

@@ -310,16 +308,16 @@ az acr manifest list-metadata \
310308
* Learn more about [OCI Artifact Manifest][oci-artifact-manifest] for how to push, discover, pull, copy a graph of supply chain artifacts
311309

312310
<!-- LINKS - external -->
313-
[docker-install]: https://www.docker.com/get-started/
314-
[oras-install-docs]: https://oras.land/cli/
315-
[oras-docs]: https://oras.land/
311+
[docker-install]: https://www.docker.com/get-started/
312+
[oras-install-docs]: https://oras.land/cli/
313+
[oras-docs]: https://oras.land/
316314
[oci-artifacts-referrers]: https://github.com/opencontainers/distribution-spec/blob/main/spec.md#listing-referrers/
317-
[oci-artifact-manifest]: https://github.com/opencontainers/image-spec/blob/main/artifact.md/
318-
[oci-spec]: https://github.com/opencontainers/distribution-spec/blob/main/spec.md/
319-
[oci-1_1-spec]: https://github.com/opencontainers/distribution-spec/releases/tag/v1.1.0-rc1
315+
[oci-artifact-manifest]: https://github.com/opencontainers/image-spec/blob/main/artifact.md/
316+
[oci-spec]: https://github.com/opencontainers/distribution-spec/blob/main/spec.md/
317+
[oci-1_1-spec]: https://github.com/opencontainers/distribution-spec/releases/tag/v1.1.0-rc1
320318

321319
<!-- LINKS - internal -->
322-
[acr-authentication]: /articles/container-registry/container-registry-authentication.md?tabs=azure-cli
320+
[acr-authentication]: /container-registry/container-registry-authentication.md?tabs=azure-cli
323321
[az-acr-create]: /container-registry/container-registry-get-started-azure-cli
324322
[az-acr-build]: /cli/azure/acr#az_acr_build
325323
[az-acr-repository-show]: /cli/azure/acr/repository?#az_acr_repository_show

0 commit comments

Comments
 (0)