You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -218,71 +218,78 @@ After the import is complete, images are available in Squashfs format in the cur
218
218
Since [public IPs are a shared resource][ref-guides-internet-access] we recommend authenticating even for publicly available images.
219
219
For example, [Docker Hub applies its rate limits per user when authenticated](https://docs.docker.com/docker-hub/usage/).
220
220
221
-
To use an image from a different registry, the corresponding registry URL has to be prepended to the image reference, using a hash character (#) as a separator. For example:
221
+
To use an image from a different registry, the corresponding registry URL has to be prepended to the image reference, using a hash character (#) as a separator:
To import images from private repositories, access credentials should be configured by individual users in the `$HOME/.config/enroot/.credentials` file, following the [netrc file format](https://everything.curl.dev/usingcurl/netrc).
233
-
Using the `enroot import` documentation page as a reference, some examples could be:
234
+
Using the `enroot import` documentation page as a reference:
235
+
236
+
??? example "`netrc` example"
237
+
```bash
238
+
# NVIDIA NGC catalog (both endpoints are required)
Annotations define arbitrary metadata for containers in the form of key-value pairs. Within the EDF, annotations are designed to be similar in appearance and behavior to those defined by the [OCI Runtime Specification](https://github.com/opencontainers/runtime-spec/blob/main/config.md#annotations). Annotation keys usually express a hierarchical namespace structure, with domains separated by "." (full stop) characters.
276
+
Annotations define arbitrary metadata for containers in the form of key-value pairs.
277
+
Within the EDF, annotations are designed to be similar in appearance and behavior to those defined by the [OCI Runtime Specification](https://github.com/opencontainers/runtime-spec/blob/main/config.md#annotations).
278
+
Annotation keys usually express a hierarchical namespace structure, with domains separated by "." (full stop) characters.
274
279
275
-
As annotations are often used to control hooks, they have a deep nesting level. For example, to execute the [SSH hook][ref-ce-ssh-hook] described below, the annotation `com.hooks.ssh.enabled` must be set to the string `true`.
280
+
As annotations are often used to control hooks, they have a deep nesting level.
281
+
For example, to execute the [SSH hook][ref-ce-ssh-hook] described below, the annotation `com.hooks.ssh.enabled` must be set to the string `true`.
276
282
277
-
EDF files support setting annotations through the `annotations` table. This can be done in multiple ways in TOML: for example, both of the following usages are equivalent:
283
+
EDF files support setting annotations through the `annotations` table.
284
+
This can be done in multiple ways in TOML: for example, both of the following usages are equivalent:
0 commit comments