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

fix: Formatting Issue on doc #448

Merged
merged 1 commit into from
Jan 2, 2025
Merged
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
9 changes: 5 additions & 4 deletions versioned_docs/version-1.2/compatible_oci_registries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,11 @@ To login to the registry without a certificate, a self-signed certificate, or an
- Generate your self-signed certificates:

```
$ mkdir -p certs
$ openssl req \
-newkey rsa:4096 -nodes -sha256 -keyout certs/domain.key \
-x509 -days 365 -out certs/domain.crt
mkdir -p certs && \
openssl req \
-newkey rsa:4096 -nodes -sha256 \
-keyout certs/domain.key \
-x509 -days 365 -out certs/domain.crt
```

- Start a registry using that file for auth and listen the `0.0.0.0` address:
Expand Down
Loading