mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
chore: fillable bug solved
This commit is contained in:
parent
37f92666d6
commit
885d8520cd
2 changed files with 1 additions and 5 deletions
|
|
@ -60,7 +60,7 @@ class DockerImage extends Component
|
|||
$environment = $project->load(['environments'])->environments->where('name', $this->parameters['environment_name'])->first();
|
||||
|
||||
$name = 'docker-image-' . new Cuid2;
|
||||
error_log($name);
|
||||
|
||||
$application = Application::create([
|
||||
'name' => $name,
|
||||
'repository_project_id' => 0,
|
||||
|
|
|
|||
|
|
@ -110,10 +110,6 @@ class Application extends BaseModel
|
|||
|
||||
private static $parserVersion = '4';
|
||||
|
||||
protected $fillable = [
|
||||
'docker_use_custom_registry',
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'docker_use_custom_registry' => 'boolean',
|
||||
'selectedRegistries' => 'array',
|
||||
|
|
|
|||
Loading…
Reference in a new issue