forked from eshtek/hexos-app-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimmich.json
More file actions
58 lines (58 loc) · 1.56 KB
/
Copy pathimmich.json
File metadata and controls
58 lines (58 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"version": 4,
"script": {
"version": "1.1.0",
"changeLog": "Upgraded to V4 install script format"
},
"requirements": {
"locations": ["ApplicationsPerformance", "Photos"],
"specifications": ["2CORE", "256MB"],
"permissions": ["READ_WRITE_LOCATIONS"],
"ports": [2283]
},
"ensure_directories_exists": [
{
"path": "$LOCATION(ApplicationsPerformance)",
"network_share": true
},
{
"path": "$LOCATION(Photos)",
"network_share": true
},
{ "path": "$LOCATION(Photos)/immich", "owner": { "user": "apps" }, "snapshot": { "id": "data" } },
{ "path": "$LOCATION(ApplicationsPerformance)/immich/postgres_data", "owner": { "user": "netdata", "group": "docker" }, "snapshot": { "id": "db" } }
],
"app_values": {
"release_name": "immich",
"immich": {
"enable_ml": true,
"ml_image_selector": "ml_image",
"db_password": "$RANDOM_STRING(7)",
"redis_password": "$RANDOM_STRING(7)",
"log_level": "log",
"hugging_face_endpoint": "",
"db_storage_type": "SSD",
"additional_envs": []
},
"network": {
"web_port": {
"bind_mode": "published",
"port_number": 2283
}
},
"storage": {
"data": "$HOST_PATH($LOCATION(Photos)/immich)",
"ml_cache": {
"type": "temporary"
},
"postgres_data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/immich/postgres_data)"
},
"resources": {
"limits": {
"cpus": 2,
"memory": "$MEMORY(10%, 4096)"
},
"gpus": "$GPU_CONFIG()"
}
}
}