mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
chore: backups custom location and config file docs (#13996)
This commit is contained in:
parent
e84ad084d5
commit
ec5b7c266b
2 changed files with 9 additions and 0 deletions
|
@ -17,6 +17,7 @@ In our `.env` file, we will define variables that will help us in the future whe
|
||||||
+ THUMB_LOCATION=/custom/path/immich/thumbs
|
+ THUMB_LOCATION=/custom/path/immich/thumbs
|
||||||
+ ENCODED_VIDEO_LOCATION=/custom/path/immich/encoded-video
|
+ ENCODED_VIDEO_LOCATION=/custom/path/immich/encoded-video
|
||||||
+ PROFILE_LOCATION=/custom/path/immich/profile
|
+ PROFILE_LOCATION=/custom/path/immich/profile
|
||||||
|
+ BACKUP_LOCATION=/custom/path/immich/backup
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -30,6 +31,7 @@ services:
|
||||||
+ - ${THUMB_LOCATION}:/usr/src/app/upload/thumbs
|
+ - ${THUMB_LOCATION}:/usr/src/app/upload/thumbs
|
||||||
+ - ${ENCODED_VIDEO_LOCATION}:/usr/src/app/upload/encoded-video
|
+ - ${ENCODED_VIDEO_LOCATION}:/usr/src/app/upload/encoded-video
|
||||||
+ - ${PROFILE_LOCATION}:/usr/src/app/upload/profile
|
+ - ${PROFILE_LOCATION}:/usr/src/app/upload/profile
|
||||||
|
+ - ${BACKUP_LOCATION}:/usr/src/app/upload/backup
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,13 @@ The default configuration looks like this:
|
||||||
"accel": "disabled",
|
"accel": "disabled",
|
||||||
"accelDecode": false
|
"accelDecode": false
|
||||||
},
|
},
|
||||||
|
"backup": {
|
||||||
|
"database": {
|
||||||
|
"enabled": true,
|
||||||
|
"cronExpression": "0 02 * * *",
|
||||||
|
"keepLastAmount": 14
|
||||||
|
}
|
||||||
|
},
|
||||||
"job": {
|
"job": {
|
||||||
"backgroundTask": {
|
"backgroundTask": {
|
||||||
"concurrency": 5
|
"concurrency": 5
|
||||||
|
|
Loading…
Reference in a new issue