coollabsio/coolify · error · Exception

Host file mounts are bind-only and cannot be loaded from the

Error message

Host file mounts are bind-only and cannot be loaded from the server.

What it means

Error "Host file mounts are bind-only and cannot be loaded from the server." thrown in coollabsio/coolify.

Source

Thrown at app/Livewire/Project/Service/FileStorage.php:173

            $this->fileStorage->is_directory = true;
            $this->fileStorage->content = null;
            $this->fileStorage->is_based_on_git = false;
            $this->fileStorage->save();
            $this->fileStorage->saveStorageOnServer();
        } catch (\Throwable $e) {
            return handleError($e, $this);
        } finally {
            $this->dispatch('refreshStorages');
        }
    }

    public function loadStorageOnServer()
    {
        try {
            $this->authorize('update', $this->resource);

            if ($this->fileStorage->is_host_file) {
                throw new \Exception('Host file mounts are bind-only and cannot be loaded from the server.');
            }

            $this->fileStorage->loadStorageOnServer();
            $this->syncData();
            $this->dispatch('success', 'File storage loaded from server.');
        } catch (\Throwable $e) {
            return handleError($e, $this);
        } finally {
            $this->dispatch('refreshStorages');
        }
    }

    public function convertToFile()
    {
        try {
            $this->authorize('update', $this->resource);

            if ($this->fileStorage->scheduledBackups()->exists()) {

View on GitHub (pinned to 70b9acc424)

When it happens

Trigger: Thrown at app/Livewire/Project/Service/FileStorage.php:173 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of coollabsio/coolify@70b9acc424 (2026-08-17). Data as JSON: /api/errors/11c5d4052188fecf. Report an issue: GitHub.