Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct zotregistry link #291

Merged
merged 1 commit into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/compatible_oci_registries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -303,23 +303,23 @@ ACR Artifact Documentation: [aka.ms/acr/artifacts](https://aka.ms/acr/artifacts)
[artifacts]: https://github.com/opencontainers/artifacts
[distribution-spec]: https://github.com/opencontainers/distribution-spec/

### [Zot Registry](https://zotregistry.io)
### [Zot Registry](https://zotregistry.dev)

- [Authenticating with Zot Registry](https://zotregistry.io/user-guides/user-guide-datapath/#authentication_2)
- [Authenticating with Zot Registry](https://zotregistry.dev/user-guides/user-guide-datapath/#authentication_2)

```
echo $ZR_PASSWORD | oras login <registry-ip>:5000 -u $ZR_USER --password-stdin
```

- [Pushing Artifacts to Zot Registry](https://zotregistry.io/user-guides/user-guide-datapath/#push-an-artifact)
- [Pushing Artifacts to Zot Registry](https://zotregistry.dev/user-guides/user-guide-datapath/#push-an-artifact)

```
oras push --plain-http <registry-ip>:5000/hello-artifact:v2 \
--config config.json:application/vnd.acme.rocket.config.v1+json \
artifact.txt:text/plain -d -v
```

- [Pulling Artifacts from Zot Registry](https://zotregistry.io/user-guides/user-guide-datapath/#pull-an-artifact)
- [Pulling Artifacts from Zot Registry](https://zotregistry.dev/user-guides/user-guide-datapath/#pull-an-artifact)

```
oras pull --plain-http <registry-ip>:5000/hello-artifact:v2 -d -v
Expand Down
2 changes: 1 addition & 1 deletion docs/glossary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ It is a multi-descriptor entry point.
### Local Registry

A registry is a place where container images and artifacts can easily be stored and accessed.
Whereas, a local registry (like [zot](https://zotregistry.io/)) is a registry that is present on our local machine.
Whereas, a local registry (like [zot](https://zotregistry.dev/)) is a registry that is present on our local machine.
You can follow our [quick start guide](./quickstart.mdx) if you would like to try using zot registry.

### Manifest Referrers API
Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ To distribute OCI artifacts, we need to understand OCI registries.
These registries store container images and other artifacts for easy access.
Distributing OCI artifacts means pushing them to these registries so others can pull them for use.

We will be using [zot registry](https://zotregistry.io/) in this guide.
We will be using [zot registry](https://zotregistry.dev/) in this guide.
Zot registry is an OCI-native container registry for distributing container images and OCI artifacts.

In order to follow the steps given, you would be required to install the ORAS CLI.
You can follow the [installation guide](./installation.mdx) to do so.

## Install zot registry

We will be running zot using docker. However, you can refer to their [installation guide](https://zotregistry.io/install-guides/install-guide-linux/) to find more ways to install the registry.
We will be running zot using docker. However, you can refer to their [installation guide](https://zotregistry.dev/install-guides/install-guide-linux/) to find more ways to install the registry.

**Prerequisites**
- [Docker](https://www.docker.com/)
Expand Down
2 changes: 1 addition & 1 deletion static/adopters/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const registries = [
light: "img/adopters/zot.svg",
dark: "img/adopters/zot.svg",
description: "An OCI-native container registry for distributing container images and OCI artifacts.",
link: "https://zotregistry.io/",
link: "https://zotregistry.dev/",
},
{
title: "Harbor",
Expand Down