-
Notifications
You must be signed in to change notification settings - Fork 680
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3999 from nextcloud/enh/noid/add-facerecognition
community-containers - add facerecognition
- Loading branch information
Showing
3 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"aio_services_v1": [ | ||
{ | ||
"container_name": "nextcloud-aio-facerecognition", | ||
"display_name": "Computing container for facerecognition", | ||
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/facerecognition", | ||
"image": "matiasdelellis/facerecognition-external-model", | ||
"image_tag": "initial", | ||
"internal_port": "5000", | ||
"restart": "unless-stopped", | ||
"environment": [ | ||
"TZ=%TIMEZONE%", | ||
"API_KEY=some-super-secret-api-key" | ||
], | ||
"aio_variables": [ | ||
"nextcloud_memory_limit=4096M" | ||
], | ||
"nextcloud_exec_commands": [ | ||
"php /var/www/html/occ app:install facerecognition", | ||
"php /var/www/html/occ app:enable facerecognition", | ||
"php /var/www/html/occ config:system:set facerecognition.external_model_url --value nextcloud-aio-facerecognition:5000", | ||
"php /var/www/html/occ config:system:set facerecognition.external_model_api_key --value some-super-secret-api-key", | ||
"php /var/www/html/occ face:setup -m 5", | ||
"php /var/www/html/occ face:setup -M 4G", | ||
"php /var/www/html/occ config:app:set facerecognition analysis_image_area --value 4320000", | ||
"php /var/www/html/occ config:system:set enabledFaceRecognitionMimetype 0 --value image/jpeg", | ||
"php /var/www/html/occ config:system:set enabledFaceRecognitionMimetype 1 --value image/png", | ||
"php /var/www/html/occ config:system:set enabledFaceRecognitionMimetype 2 --value image/heic", | ||
"php /var/www/html/occ config:system:set enabledFaceRecognitionMimetype 3 --value image/tiff", | ||
"php /var/www/html/occ config:system:set enabledFaceRecognitionMimetype 4 --value image/webp", | ||
"php /var/www/html/occ face:background_job --defer-clustering &" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Facerecognition | ||
This container bundles the external model of facerecognition and auto-configures it for you. | ||
|
||
### Notes | ||
- This container needs imaginary in order to analyze modern file format images. Make sure to enable imaginary in the AIO interface before adding this container. | ||
- If facerecognition shall analyze shared files & folders (`sudo docker exec --user www-data -it nextcloud-aio-nextcloud php occ config:app:set facerecognition handle_shared_files --value true`), groupfolders (`sudo docker exec --user www-data -it nextcloud-aio-nextcloud php occ config:app:set facerecognition handle_group_files --value true`) and/or external storages (`sudo docker exec --user www-data -it nextcloud-aio-nextcloud php occ config:app:set facerecognition handle_external_files --value true`) in Nextcloud, you need to enable support for it manually first by running the mentioned commands before adding this container. See https://github.com/matiasdelellis/facerecognition/wiki/Settings#hidden-settings for further notes on each of these settings. | ||
- See https://github.com/nextcloud/all-in-one/tree/main/community-containers#community-containers how to add it to the AIO stack | ||
|
||
### Repository | ||
https://github.com/matiasdelellis/facerecognition-external-model | ||
|
||
### Maintainer | ||
https://github.com/matiasdelellis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters