Add Immich Stack

This commit is contained in:
Daniel Cosme
2026-04-30 18:05:24 -04:00
parent f945695b61
commit d3cea1aecd
14 changed files with 128 additions and 43 deletions

View File

@@ -3,17 +3,34 @@ package root
type Service struct {
Name string
Image string
PublicURL string
Port int32
SecurityContextID int64
Public *Public
Postgres *Postgres
}
type Public struct {
URL string
NodePort int32
}
type Postgres struct{}
var Linkding = Service{
Name: "linkding",
Image: "sissbruecker/linkding:1.45.0",
PublicURL: "https://link.danicos.me",
Port: 9090,
SecurityContextID: 33, // www-data user, group and FS ID
Public: &Public{
URL: "https://link.danicos.me",
NodePort: 30010,
},
}
var Immich = Service{
Name: "immich",
Image: "",
// PublicURL: "https://photos.danicos.me",
}
var (