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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ For example, this paragraph will span three lines in the Markdown source.
93
93
### Sign your work
94
94
95
95
The sign-off is a simple line at the end of the explanation for the patch, which certifies that you wrote it or otherwise have the right to pass it on as an open-source patch.
96
-
The rules are pretty simple: if you can certify the below (from [developercertificate.org](http://developercertificate.org/)):
96
+
The rules are pretty simple: if you can certify the below (from [developercertificate.org](https://developercertificate.org/)):
97
97
98
98
```
99
99
Developer Certificate of Origin
@@ -145,7 +145,7 @@ You can add the sign off when creating the git commit via `git commit -s`.
145
145
### Commit Style
146
146
147
147
Simple house-keeping for clean git history.
148
-
Read more on [How to Write a Git Commit Message](http://chris.beams.io/posts/git-commit/) or the Discussion section of [`git-commit(1)`](http://git-scm.com/docs/git-commit).
148
+
Read more on [How to Write a Git Commit Message](https://chris.beams.io/posts/git-commit/) or the Discussion section of [`git-commit(1)`](https://git-scm.com/docs/git-commit).
149
149
150
150
1. Separate the subject from body with a blank line
Copy file name to clipboardExpand all lines: annotations.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ This specification defines the following annotation keys, intended for but not l
24
24
***org.opencontainers.image.source** URL to get source code for building the image (string)
25
25
***org.opencontainers.image.version** version of the packaged software
26
26
* The version MAY match a label or tag in the source code repository
27
-
* version MAY be [Semantic versioning-compatible](http://semver.org/)
27
+
* version MAY be [Semantic versioning-compatible](https://semver.org/)
28
28
***org.opencontainers.image.revision** Source control revision identifier for the packaged software.
29
29
***org.opencontainers.image.vendor** Name of the distributing entity, organization or individual.
30
30
***org.opencontainers.image.licenses** License(s) under which contained software is distributed as an [SPDX License Expression][spdx-license-expression].
Copy file name to clipboardExpand all lines: descriptor.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ Extended _Descriptor_ field additions proposed in other OCI specifications SHOUL
59
59
60
60
## Digests
61
61
62
-
The _digest_ property of a Descriptor acts as a content identifier, enabling [content addressability](http://en.wikipedia.org/wiki/Content-addressable_storage).
62
+
The _digest_ property of a Descriptor acts as a content identifier, enabling [content addressability](https://en.wikipedia.org/wiki/Content-addressable_storage).
63
63
It uniquely identifies content by taking a [collision-resistant hash](https://en.wikipedia.org/wiki/Cryptographic_hash_function) of the bytes.
64
64
If the _digest_ can be communicated in a secure manner, one can verify content from an insecure source by recalculating the digest independently, ensuring the content has not been modified.
Copy file name to clipboardExpand all lines: layer.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ Where supported, MUST include file attributes for Additions and Modifications in
63
63
64
64
#### Hardlinks
65
65
66
-
* Hardlinks are a [POSIX concept](http://pubs.opengroup.org/onlinepubs/9699919799/functions/link.html) for having one or more directory entries for the same file on the same device.
66
+
* Hardlinks are a [POSIX concept](https://pubs.opengroup.org/onlinepubs/9699919799/functions/link.html) for having one or more directory entries for the same file on the same device.
67
67
* Not all filesystems support hardlinks (e.g. [FAT](https://en.wikipedia.org/wiki/File_Allocation_Table)).
68
68
* Hardlinks are possible with all [file types](#file-types) except `directories`.
69
69
* Non-directory files are considered "hardlinked" when their link count is greater than 1.
@@ -147,9 +147,9 @@ Entries for the following files:
147
147
148
148
Create a new directory and initialize it with a copy or snapshot of the prior root filesystem.
149
149
Example commands that can preserve [file attributes](#file-attributes) to make this copy are:
150
-
*[cp(1)](http://linux.die.net/man/1/cp): `cp -a rootfs-c9d-v1/ rootfs-c9d-v1.s1/`
*[tar(1)](https://linux.die.net/man/1/tar): `mkdir rootfs-c9d-v1.s1 && tar --acls --xattrs -C rootfs-c9d-v1/ -c . | tar -C rootfs-c9d-v1.s1/ --acls --xattrs -x` (including `--selinux` where supported)
153
153
154
154
Any [changes](#change-types) to the snapshot MUST NOT change or affect the directory it was copied from.
155
155
@@ -235,7 +235,7 @@ This section specifies applying an entry from a layer changeset if the target pa
235
235
236
236
If the entry and the existing path are both directories, then the existing path's attributes MUST be replaced by those of the entry in the changeset.
237
237
In all other cases, the implementation MUST do the semantic equivalent of the following:
238
-
- removing the file path (e.g. [`unlink(2)`](http://linux.die.net/man/2/unlink) on Linux systems)
238
+
- removing the file path (e.g. [`unlink(2)`](https://linux.die.net/man/2/unlink) on Linux systems)
239
239
- recreating the file path, based on the contents and attributes of the changeset entry
240
240
241
241
## Whiteouts
@@ -333,7 +333,7 @@ Implementations SHOULD NOT upload layers tagged with this media type; however, s
333
333
[Descriptors](descriptor.md) referencing non-distributable layers MAY include `urls` for downloading these layers directly; however, the presence of the `urls` field SHOULD NOT be used to determine whether or not a layer is non-distributable.
0 commit comments