Files
homelab/pkg/root/services.go
T

16 lines
335 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
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-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
}