修复权限管理,角色认证,更新工单认领系统,增加表格导出支持区间选择,增加docker管理(开发中

This commit is contained in:
2026-07-09 10:06:44 +08:00
parent 0c2fe393df
commit 3b84698fd3
25 changed files with 8975 additions and 102 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
while true; do
nc -l 127.0.0.1 9999 <<EOF
HTTP/1.1 200 OK
Content-Type: application/json
$(docker ps -a --format '{{.Names}}|{{.ID}}|{{.Image}}|{{.Status}}|{{.Ports}}')
EOF
done