Sign inSign up

blankoff/openssl-3.0.0

By blankoff

Updated over 5 years ago

Alpine image of OpenSSL 3.0.0. Alpha12

Image
0

134

blankoff/openssl-3.0.0 repository overview

Alpine image of OpenSSL 3.0.0. Alpha12

By default set command is openssl version

For example:
run blankoff/openssl-3.0.0
Multiple actions

I'd recommend to you get in to container and use OpenSSL of there:

docker run -it blankoff/openssl-3.0.0 sh
Single action

For example, creating Self-signed Certificate for SSL/TLS, IPsec and etc.

docker run --rm -d --mount type=bind,src=/temporary,dst=/temporary -w /temporary blankoff/openssl-3.0.0 \
openssl req \
-newkey rsa:2048 \
-nodes \
-sha256 \
-x509 \
-days 365 \
-subj "/C=AD/ST=state/L=city/O=org/OU=depart/CN=172.17.0.3" \
-addext "subjectAltName = DNS:172.17.0.3" \
-addext "certificatePolicies = 1.2.3.4" \
-keyout privateRSA.key \
-out certificate.crt

...where input your own options: CN=<domain or ip> DNS:<domain or ip>

Tag summary

Content type

Image

Digest

Size

11.6 MB

Last updated

over 5 years ago

docker pull blankoff/openssl-3.0.0