1. 前端界面更新,添加部分按钮

2. README更新项目启动方式
3. 修改Docker启动脚本,使用--privileged和--host模式启动
This commit is contained in:
EnderByEndera
2024-01-27 02:34:51 +08:00
parent e48f837b64
commit c806444935
23 changed files with 173 additions and 19 deletions

View File

@@ -17,5 +17,6 @@ docker load < realtime_protection/docker-ubuntu/protection_ubuntu.tar
docker build -t protection_springboot -f realtime_protection/docker-springboot/Dockerfile .
echo "============built backend servers============"
docker run -itd --name springboot_backend -p 8081:8081 protection_springboot
# 使用privileged模式在中心部署时不会遭遇Java内存异常错误
docker run --privileged -itd --name springboot_backend -p 8081:8081 protection_springboot
echo "============started backend servers============"