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",
Image: "sissbruecket/linkding:1.31.0",
Port: 9090,
}