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

https://github.com/solairen/password_generator

Simple application that generates passwords
https://github.com/solairen/password_generator

csharp docker netcore

Last synced: 6 months ago
JSON representation

Simple application that generates passwords

Awesome Lists containing this project

README

          

## Password generator

### About

Simple application that generates passwords with specific lenghts and special characters.

### Language and Framework

* Language: C#
* Framework: netCore 9.0

#### To build docker container

* OS in the container: Linux

* Command:

```bash
dotnet build -t password-generator:latest .
```

### To pull image from docker hub

* docker pull moleszek/password-generator:

### Usage

* Withouth special characters:

```bash
docker run --rm password-generator:latest -l 20
```

* With special characters:

```bash
docker run --rm password-generator:latest -l 20 --special_char
```