Skip to content

Adventune/docker-registry-access-control

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-registry-access-control

This repository contains the code files for my blog post at https://samukupiainen.fi/blog/docker-registry-access-control/.

Blog post is not yet published

openssl commands:

# Generate private key
openssl genpkey -algorithm RSA -out ./auth-config/auth.key

# Create a certificate signing request
openssl req -new -key ./auth-config/auth.key -out csr.pem # Answer the questions for the self signed certificate

# Generate the certificate
openssl x509 -req -in csr.pem -signkey ./auth-config/auth.key -out ./auth-config/auth.pem

Releases

No releases published

Packages

No packages published