# facedeploy **Repository Path**: yujianzhao/facedeploy ## Basic Information - **Project Name**: facedeploy - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-17 - **Last Updated**: 2024-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ``` # facedeploy 基于 face-search:https://gitee.com/open-visual/face-search 首先配置环境变量,这里面需要vim /etc/profile 新增 FACESEARCH_VOLUME_DIRECTORY=/root/face-search-master/scripts source /etc/profile 然后 1、配置环境变量:FACESEARCH_VOLUME_DIRECTORY,指定当前的挂载根路径,默认为当前路径 2、对opensearch的挂载目录进行赋权: 新建目录:${FACESEARCH_VOLUME_DIRECTORY:-.}/volumes-face-search/opensearch/data 目录赋权:chmod 777 ${FACESEARCH_VOLUME_DIRECTORY:-.}/volumes-face-search/opensearch/data 3、使用opensearch作为向量搜索引擎 docker-compose -f docker-compose-opensearch.yml --compatibility up -d 再执行 4、服务访问: opensearch自带的可视化工具:http://127.0.0.1:5601 admin/admin facesearch的swagger文档: http://127.0.0.1:56789/doc.html 后面准备部署前端,作者给出的不够详细自己再研究下 ```