Files
homelab/pkg/root/services.go
2026-04-18 19:02:37 -04:00

16 lines
335 B
Go

package root
type Service struct {
Name string
Image string
Port int32
SecurityContextID int64
}
var Linkding = Service{
Name: "linkding",
Image: "sissbruecker/linkding:1.45.0",
Port: 9090,
SecurityContextID: 33, // www-data user, group and FS ID
}