Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/erlang/docker-erlang-example

HowTo Erlang in Docker
https://github.com/erlang/docker-erlang-example

Last synced: 2 months ago
JSON representation

HowTo Erlang in Docker

Awesome Lists containing this project

README

        

## Generating Certificate

Generate certificates in subdirectory `ssl`.

### Root CA

$ openssl genrsa -out dockerwatch-ca.key 4096

$ openssl req -x509 -new -nodes -key dockerwatch-ca.key -sha256 -days 1024 -out dockerwatch-ca.pem

### Server Certificate

$ openssl genrsa -out dockerwatch-server.key 4096

Certificate signing request

$ openssl req -new -key dockerwatch-server.key -out dockerwatch-server.csr

The most important field: `Common Name (eg, YOUR name) []: localhost`. We use localhost in this example.

### Sign it

$ openssl x509 -req -in dockerwatch-server.csr -CA dockerwatch-ca.pem -CAkey dockerwatch-ca.key -CAcreateserial -out dockerwatch-server.pem -days 500 -sha256