command
Version:
v0.12.1
Opens a new window with list of versions in this module.
Published: Dec 8, 2025
License: Apache-2.0
Opens a new window with license information.
Imports: 6
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
TB API Password Configuration Guide
Generating Password Hash
-
From the CB-Tumblebug root directory, generate a bcrypt hash of your password using:
make bcrypt PASSWORD=yourpassword
-
Copy the generated hash value.
Configuring the Password
Using Docker Compose
- Open
docker-compose.yaml and update the TB_API_PASSWORD environment variable with ($$):
environment:
- TB_API_PASSWORD=$$2a$$10$$4PKzCuJ6fPYsbCF.HR//ieLjaCzBAdwORchx62F2JRXQsuR3d9T0q
Using Environment File
- If you're using
setup.env, update the password hash:
TB_API_PASSWORD='$2a$10$4PKzCuJ6fPYsbCF.HR//ieLjaCzBAdwORchx62F2JRXQsuR3d9T0q'
Using Dockerfile
- If you're building directly with Dockerfile, update the environment variable with (' '):
ENV TB_API_PASSWORD='$2a$10$4PKzCuJ6fPYsbCF.HR//ieLjaCzBAdwORchx62F2JRXQsuR3d9T0q'
Notes
- Always keep your password hash secure
- Never commit the actual password or hash to version control
- The hash should be properly escaped if it contains special characters
Documentation
¶
There is no documentation for this package.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.