-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a4cb9c
commit df8167d
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Docker.sigs | ||
|
||
## Motivation | ||
|
||
This repo serves as a location to upload and preserve detached signatures, which are then uploaded to the respective respository on dockerhub. This allows users to validate the the docker images they are using have been inspected, if not built, by the person who should've built it. | ||
|
||
## Repos | ||
|
||
(dashd)[dashd] Docker image hosting Dash Core. | ||
|
||
## Steps to Sign | ||
|
||
``` | ||
cosign sign --key path/to/priv/key/dashd.key --output-signature $(digest).cosig --upload=false docker.io/dashpay/dashd@sha256:$(digest) | ||
``` | ||
|
||
## Steps to Validate | ||
|
||
``` | ||
cosign verify --key=dashd.pub dashpay/dashd:20.1.1 | ||
``` | ||
|