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
- Host: GitHub
- URL: https://github.com/solairen/password_generator
- Owner: solairen
- License: mit
- Created: 2021-01-20T12:58:19.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-11-25T06:41:22.000Z (8 months ago)
- Last Synced: 2025-11-28T14:10:32.060Z (8 months ago)
- Topics: csharp, docker, netcore
- Language: C#
- Homepage:
- Size: 166 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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
```