major rewite to remove HEREDOC
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m13s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m13s
This commit is contained in:
8
config/override-db.php
Normal file
8
config/override-db.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
// ---- overrides injected at runtime ----
|
||||
$configValues['CONFIG_DB_ENGINE'] = 'mysqli';
|
||||
$configValues['CONFIG_DB_HOST'] = getenv('DBHOST') ?: 'db';
|
||||
$configValues['CONFIG_DB_PORT'] = getenv('DBPORT') ?: '3306';
|
||||
$configValues['CONFIG_DB_USER'] = getenv('DBUSER') ?: 'radius';
|
||||
$configValues['CONFIG_DB_PASS'] = getenv('DBPASS') ?: '';
|
||||
$configValues['CONFIG_DB_NAME'] = getenv('DBNAME') ?: 'radius';
|
Reference in New Issue
Block a user