We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a687561 commit 8086d5cCopy full SHA for 8086d5c
agent/app/service/container_compose.go
@@ -209,7 +209,7 @@ func (u *ContainerService) CreateCompose(req dto.ComposeCreate) error {
209
_, _ = compose.Down(req.Path)
210
return err
211
}
212
- _ = composeRepo.CreateRecord(&model.Compose{Name: req.Name, Path: req.Path})
+ _ = composeRepo.CreateRecord(&model.Compose{Name: strings.ToLower(req.Name), Path: req.Path})
213
return nil
214
}, nil)
215
_ = taskItem.Execute()
0 commit comments