Skip to content

Commit

Permalink
fix: coolify-db should not be in the managed resources
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Sep 19, 2024
1 parent 2d94ebf commit e9fbb7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Models/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -838,9 +838,9 @@ public function databases()
$clickhouses = data_get($standaloneDocker, 'clickhouses', collect([]));

return $postgresqls->concat($redis)->concat($mongodbs)->concat($mysqls)->concat($mariadbs)->concat($keydbs)->concat($dragonflies)->concat($clickhouses);
})->filter(function ($item) {
})->flatten()->filter(function ($item) {
return data_get($item, 'name') !== 'coolify-db';
})->flatten();
});
}

public function applications()
Expand Down

0 comments on commit e9fbb7d

Please sign in to comment.