Alpine image of OpenSSL 3.0.0. Alpha12
134
By default set command is openssl version
run blankoff/openssl-3.0.0
I'd recommend to you get in to container and use OpenSSL of there:
docker run -it blankoff/openssl-3.0.0 sh
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>
Content type
Image
Digest
Size
11.6 MB
Last updated
over 5 years ago
docker pull blankoff/openssl-3.0.0