mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-22 08:38:13 +02:00
fix: harden the postgres default password
This commit is contained in:
parent
418592178c
commit
49e68b49d5
4 changed files with 24 additions and 2 deletions
|
|
@ -243,6 +243,7 @@ if ($UseCoturn) {
|
|||
|
||||
Write-Info "[2/$TotalSteps] Creating environment file..."
|
||||
$ossJwtSecret = New-HexSecret 32
|
||||
$postgresPassword = New-HexSecret 32
|
||||
|
||||
$envLines = @(
|
||||
'# Container registry for Dograh images'
|
||||
|
|
@ -251,6 +252,11 @@ $envLines = @(
|
|||
'# JWT secret for OSS authentication'
|
||||
"OSS_JWT_SECRET=$ossJwtSecret"
|
||||
''
|
||||
'# PostgreSQL password. Used by the postgres container on first init and by'
|
||||
"# the API's DATABASE_URL. Do not change after the first start — the password"
|
||||
'# is baked into the postgres data volume when it is first created.'
|
||||
"POSTGRES_PASSWORD=$postgresPassword"
|
||||
''
|
||||
'# Telemetry (set to false to disable)'
|
||||
"ENABLE_TELEMETRY=$EnableTelemetry"
|
||||
''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue