Fix updater stderr no permissions

This commit is contained in:
Peter Smit
2025-01-16 16:38:33 +01:00
parent a32ebbfac2
commit 67806c4bf0

View File

@@ -68,7 +68,7 @@ error_log('SUCCESS - ' . $decoded['ref']);
chdir($docker_config_dir); chdir($docker_config_dir);
exec('git pull'); exec('git pull');
exec('docker compose up -d --quiet-pull > /dev/stdout 2>/dev/stderr &'); exec('docker compose up -d --build --quiet-pull > /dev/stdout 2>&1 &');
// send return code and text message // send return code and text message
http_response_code(200); http_response_code(200);