Files
homelab/pkg/root/services.go
T

22 lines
497 B
Go
Raw Normal View History

2026-04-17 20:49:37 -04:00
package root
type Service struct {
2026-04-18 12:10:01 -04:00
Name string
Image string
2026-04-21 13:06:42 -04:00
PublicURL string
2026-04-18 12:10:01 -04:00
Port int32
SecurityContextID int64
2026-04-17 20:49:37 -04:00
}
var Linkding = Service{
2026-04-18 12:10:01 -04:00
Name: "linkding",
2026-04-18 19:02:37 -04:00
Image: "sissbruecker/linkding:1.45.0",
2026-04-21 13:06:42 -04:00
PublicURL: "https://link.danicos.me",
2026-04-18 12:10:01 -04:00
Port: 9090,
SecurityContextID: 33, // www-data user, group and FS ID
2026-04-17 20:49:37 -04:00
}
2026-04-21 13:06:42 -04:00
2026-04-25 18:15:23 -04:00
var Longhorn = "longhorn"
2026-04-25 21:57:13 -04:00
var Monitoring = "monitoring"
var TrueNAS_CSI = "truenas-csi"