1.拉取docker镜像
docker pull frooodle/s-pdf:latest
2.创建docker容器:
docker run -d --name quanquan-PDF -p 10005:8080 -v /opt/trainingData:/usr/share/tessdata -v /opt/extraConfigs:/configs -v /opt/customFiles:/customFiles/ -v /opt/logs:/logs/ -e DOCKER_ENABLE_SECURITY=true -e SECURITY_ENABLELOGIN=true -e SECURITY_INITIALLOGIN_USERNAME=name -e SECURITY_INITIALLOGIN_PASSWORD=password -e UI_APPNAME='quaquan-PDF' -e INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false -e SYSTEM_DEFAULTLOCALE=zh_CN frooodle/s-pdf:latest
注:
- -p 10005:8080 –>号前面改为本地没被占用端口;
- -v /opt/trainingData:/usr/share/tessdata –>冒号前面映射我们前面新建“trainingData”子文件夹的本地实际路径;
- -v /opt/extraConfigs:/configs –>冒号前面映射我们前面新建“extraConfigs”子文件夹的本地实际路径;
- -v /opt/customFiles:/customFiles/ –>冒号前面映射我们前面新建“customFiles”子文件夹的本地实际路径;
- -v /opt/logs:/logs/ –>冒号前面映射我们前面新建“logs”子文件夹的本地实际路径;
- -e SECURITY_INITIALLOGIN_USERNAME=stark –>Web端登录账号,自行设置;
- -e SECURITY_INITIALLOGIN_PASSWORD=stark –>Web端登录密码,自行设置;
- -e UI_APPNAME=’quaquan-PDF’ –>Web端显示名称,自行设置
3.定制化 Stirling PDF
Stirling PDF 允许轻松定制应用程序。包括类似的东西
- 自定义应用程序名称
- 自定义标语、图标、图像,甚至自定义 HTML(通过文件覆盖)
匹配文件位置 /location/of/extraConfigs:/configs
打开settings.yml,可以修改默认语言和其他一些设置。