Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 895 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 895 Bytes

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