07 2025 档案

摘要:以构建im-web为例,部署到arm64架构的服务器 Dockerfile # Nginx镜像 FROM nginx:stable-linuxarm64 # 删除默认的 Nginx 配置文件 RUN rm -rf /etc/nginx/conf.d/default.conf # 复制自定义配置 CO 阅读全文
posted @ 2025-07-29 19:53 0611163 阅读(22) 评论(0) 推荐(0)
摘要:目标服务器 arm64架构 下载Jpom安装包 https://jpom.top/pages/all-downloads/ 我下载的是jpom-2.11.12.zip 在Windows环境构建Docker镜像 拉基础镜像 拉基础镜像我用的是我自己的阿里云账号的镜像加速器: // daemon.jso 阅读全文
posted @ 2025-07-26 17:37 0611163 阅读(76) 评论(0) 推荐(0)
摘要:uavInspection.js代码 /** * 无人机巡检 */ import * as mars3d from "mars3d" import * as Cesium from 'mars3d-cesium' import * as turf from "@turf/turf" import { 阅读全文
posted @ 2025-07-02 17:35 0611163 阅读(194) 评论(0) 推荐(0)
摘要:Topshelf 简介 Topshelf是一种创建Windows服务的开源框架 安装依赖 NuGet搜索Topshelf并安装 编写服务类 需要继承 Topshelf.ServiceControl 类,并实现 bool Start(Topshelf.HostControl hostControl) 阅读全文
posted @ 2025-07-01 12:33 0611163 阅读(27) 评论(0) 推荐(0)