Files
rehearshalhub/.gitea-registry-auth.example
2026-04-10 11:31:29 +02:00

20 lines
498 B
Plaintext

{
"auths": {
"git.sschuhmann.de": {
"auth": "BASE64_ENCODED_USERNAME_TOKEN"
}
}
}
# To use this file:
# 1. Copy to ~/.docker/config.json
# 2. Replace BASE64_ENCODED_USERNAME_TOKEN with your actual base64 encoded credentials
# 3. Run: docker login git.sschuhmann.de
# Generate base64 credentials:
# echo -n "username:token" | base64
# Example usage:
# cp .gitea-registry-auth.example ~/.docker/config.json
# # Edit the file with your credentials
# docker login git.sschuhmann.de