https://github.com/abnerkaizer/docker
https://github.com/abnerkaizer/docker
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/abnerkaizer/docker
- Owner: abnerkaizer
- License: mit
- Created: 2025-03-27T15:45:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-27T15:59:21.000Z (about 1 year ago)
- Last Synced: 2025-03-27T16:42:13.678Z (about 1 year ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Hashed Password
```
openssl passwd -apr1 your-password
```
Copy the resulted hash to the .env of Traefik, it needs to be inside single quotes.
## ADMIN_TOKEN
```
echo -n "MySecretPassword" | argon2 "$(openssl rand -base64 32)" -e -id -k 65540 -t 3 -p 4
```
Copy the derived key to the Vaultwarden .env, it needs to be inside single quotes.