First changes for Docker

This commit is contained in:
Fabio Herzig
2026-07-25 21:51:43 +02:00
parent 6cb5386205
commit 99a5863f56
10 changed files with 122 additions and 321 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ if ($type === 'kr'){
require __DIR__ . '/../../composer/vendor/autoload.php';
$envFile = realpath(__DIR__ . '/../../config/.env.db');
$envFile = realpath(__DIR__ . '/../../config/.env.db-wkvs-user');
if ($envFile === false) {
http_response_code(500);
@@ -45,7 +45,7 @@ if ($envFile === false) {
try {
$envDir = dirname($envFile);
$dotenv = Dotenv::createImmutable($envDir, '.env.db');
$dotenv = Dotenv::createImmutable($envDir, '.env.db-wkvs-user');
$dotenv->load();
} catch (Throwable $e) {