2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 18:27:13 +08:00

feat: 支持更新编排文件

This commit is contained in:
耗子
2025-03-21 03:21:44 +08:00
parent eed834bd5f
commit 139679ed0f

View File

@@ -291,6 +291,7 @@ func (route *Http) Register(r *chi.Mux) {
r.Get("/", route.containerCompose.List)
r.Get("/{name}", route.containerCompose.Get)
r.Post("/", route.containerCompose.Create)
r.Put("/{name}", route.containerCompose.Update)
r.Post("/{name}/up", route.containerCompose.Up)
r.Post("/{name}/down", route.containerCompose.Down)
r.Delete("/{name}", route.containerCompose.Remove)