Skip to content

Latest commit

 

History

History
40 lines (23 loc) · 1.06 KB

README.md

File metadata and controls

40 lines (23 loc) · 1.06 KB

release

docker-pwgen

This is a secure container to run pwgen. We created our own in order to be able to control the contents, since we use this for security-sensitive purposes.

The container will check to make sure that a good source of entropy is available to the container, and exit with an error otherwise.

Usages

Generate a 20 character long password in terminal

$ docker run ghcr.io/komed-health/pwgen 20

Bash script to generate a 20 character long password

#/bin/bash

declare PWGEN_CMD="docker run ghcr.io/komed-health/pwgen"

declare PW=$($PWGEN_CMD 20)

echo $PW

Release new version

❗️This project follows Semantic Versioning❗️

This is our process to release a new version:

  1. Go to the release page and create a new release e.g. 1.0.0.
  2. Write down couple of sentences in the release description.

That's it 🎉