Files
homelab/pkg/root/services.go
T

14 lines
180 B
Go
Raw Normal View History

2026-04-17 20:49:37 -04:00
package root
type Service struct {
Name string
Image string
Port int32
}
var Linkding = Service{
Name: "linkding",
2026-04-17 20:53:31 -04:00
Image: "sissbruecker/linkding:1.31.0",
2026-04-17 20:49:37 -04:00
Port: 9090,
}