Add Immich Stack
This commit is contained in:
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user