feat: Implement WebSocket-based SSH terminal functionality and refactor the frontend using the Tabler.io framework.
Build Docker Container using Multistage Build / build (push) Failing after 4m17s

This commit is contained in:
Matthias Hinrichs
2026-02-18 00:38:31 +01:00
parent f088a6fba9
commit e68e355e3f
9 changed files with 1068 additions and 229 deletions
+5 -5
View File
@@ -2,9 +2,9 @@ package serveractions
// Server struct to hold server information
type Server struct {
Name string `json:"name"`
Mac string `json:"mac"`
IP string `json:"ip"`
SSHUser string `json:"ssh_user"`
SSHPass string `json:"ssh_pass"`
Name string `json:"name" mapstructure:"name"`
Mac string `json:"mac" mapstructure:"mac"`
IP string `json:"ip" mapstructure:"ip"`
SSHUser string `json:"ssh_user" mapstructure:"ssh_user"`
SSHPass string `json:"ssh_pass" mapstructure:"ssh_pass"`
}