ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
1.0 KiB

  1. # Secrets defined here are available for reference under registry/password, env/secret, builder/secrets,
  2. # and accessories/*/env/secret in config/deploy.yml. All secrets should be pulled from either
  3. # password manager, ENV, or a file. DO NOT ENTER RAW CREDENTIALS HERE! This file needs to be safe for git.
  4. # Example of extracting secrets from 1password (or another compatible pw manager)
  5. # SECRETS=$(kamal secrets fetch --adapter 1password --account your-account --from Vault/Item KAMAL_REGISTRY_PASSWORD RAILS_MASTER_KEY)
  6. # KAMAL_REGISTRY_PASSWORD=$(kamal secrets extract KAMAL_REGISTRY_PASSWORD ${SECRETS})
  7. # RAILS_MASTER_KEY=$(kamal secrets extract RAILS_MASTER_KEY ${SECRETS})
  8. # Use a GITHUB_TOKEN if private repositories are needed for the image
  9. # GITHUB_TOKEN=$(gh config get -h github.com oauth_token)
  10. # Grab the registry password from ENV
  11. KAMAL_REGISTRY_PASSWORD=$KAMAL_REGISTRY_PASSWORD
  12. # Improve security by using a password manager. Never check config/master.key into git!
  13. RAILS_MASTER_KEY=$(cat config/master.key)