chadkouse / docker-generate-certificate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jacoelho/generate-certificate

This image generates a self-signed SSL/TLS certificate.

The certificate server name is specified using the commandline option to set the SERVER environment variable.

The certificate subject organization is specified using the commandline option to set the SUBJECT environment variable.

An example of generating a certificate for server "server.example.com" using the standard CA organization (assuming you tag the image as jacoelho/genearate-certificate):

  • docker run --rm -v $(pwd):/certificates -e "SERVER=server.example.com" jacoelho/generate-certificate

Or if you want to set, for example an organization:

  • docker run --rm -v $(pwd):/certificates -e "SERVER=server.example.com" -e "SUBJECT=/C=CA/ST=Canada/L=Canada/O=IT" jacoelho/generate-certificate

for the specified server will generate:

  • cacert.pem
  • server.key
  • server.pem

About


Languages

Language:Shell 86.0%Language:Dockerfile 14.0%