fix: cleanup docker images

This commit is contained in:
Andras Bacsai
2023-07-07 15:50:36 +02:00
parent f38a9f36a1
commit 712151aa80
5 changed files with 61 additions and 47 deletions

View File

@@ -2,7 +2,7 @@
namespace App\Http\Livewire\Settings;
use App\Jobs\InstanceProxyCheckJob;
use App\Jobs\ProxyCheckJob;
use App\Models\InstanceSettings as ModelsInstanceSettings;
use App\Models\Server;
use Livewire\Component;
@@ -138,7 +138,7 @@ class Configuration extends Component
$this->server = Server::findOrFail(0);
$this->setup_instance_fqdn();
if ($this->settings->fqdn) {
dispatch(new InstanceProxyCheckJob());
dispatch(new ProxyCheckJob());
}
$this->emit('success', 'Instance settings updated successfully!');
}