From 039aa863212fa88457333f163aa3b20dedad9874 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 18 Jul 2025 23:16:12 +0200 Subject: [PATCH] fix(application): update service environment variables when generating domain for Docker Compose --- app/Livewire/Project/Application/General.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Livewire/Project/Application/General.php b/app/Livewire/Project/Application/General.php index ac2e6794d..03b67dce6 100644 --- a/app/Livewire/Project/Application/General.php +++ b/app/Livewire/Project/Application/General.php @@ -274,6 +274,7 @@ class General extends Component $this->application->save(); $this->dispatch('success', 'Domain generated.'); if ($this->application->build_pack === 'dockercompose') { + $this->updateServiceEnvironmentVariables(); $this->loadComposeFile(); }