chore: 测试armv7

pull/189/head
xiaojunnuo 2024-09-07 11:21:10 +08:00
parent 935ebe022a
commit 1b1a1a5bc2
8 changed files with 10 additions and 10 deletions

View File

@ -162,12 +162,12 @@ docker compose up -d
## 八、问题处理 ## 八、问题处理
### 7.1 忘记管理员密码 ### 7.1 忘记管理员密码
解决方法如下: 解决方法如下:
1. 修改docker-compose.yaml文件将环境变量`certd_system_resetAdminPassword`改为`true` 1. 修改docker-compose.yaml文件将环境变量`certd_system_resetAdminPasswd`改为`true`
```yaml ```yaml
services: services:
certd: certd:
environment: # 环境变量 environment: # 环境变量
- certd_system_resetAdminPassword=false - certd_system_resetAdminPasswd=false
``` ```
2. 重启容器 2. 重启容器
```shell ```shell
@ -175,7 +175,7 @@ docker compose up -d
docker logs -f --tail 500 certd docker logs -f --tail 500 certd
# 观察日志当日志中输出“重置1号管理员用户的密码完成”即可操作下一步 # 观察日志当日志中输出“重置1号管理员用户的密码完成”即可操作下一步
``` ```
3. 修改docker-compose.yaml将`certd_system_resetAdminPassword`改回`false` 3. 修改docker-compose.yaml将`certd_system_resetAdminPasswd`改回`false`
4. 再次重启容器 4. 再次重启容器
```shell ```shell
docker compose up -d docker compose up -d

View File

@ -1 +1 @@
4 5

View File

@ -59,5 +59,5 @@
"bugs": { "bugs": {
"url": "https://github.com/publishlab/node-acme-client/issues" "url": "https://github.com/publishlab/node-acme-client/issues"
}, },
"gitHead": "d65d94b784ba526c479fab9bc402960d4e805d69" "gitHead": "c49ccbde93dbad7062ac39d4f18eca7d561f573f"
} }

View File

@ -57,5 +57,5 @@
"vite": "^4.3.8", "vite": "^4.3.8",
"vue-tsc": "^1.6.5" "vue-tsc": "^1.6.5"
}, },
"gitHead": "d65d94b784ba526c479fab9bc402960d4e805d69" "gitHead": "c49ccbde93dbad7062ac39d4f18eca7d561f573f"
} }

View File

@ -16,5 +16,5 @@
"axios": "^1.7.2", "axios": "^1.7.2",
"rollup": "^3.7.4" "rollup": "^3.7.4"
}, },
"gitHead": "d65d94b784ba526c479fab9bc402960d4e805d69" "gitHead": "c49ccbde93dbad7062ac39d4f18eca7d561f573f"
} }

View File

@ -37,5 +37,5 @@
"tslib": "^2.5.2", "tslib": "^2.5.2",
"typescript": "^4.8.4" "typescript": "^4.8.4"
}, },
"gitHead": "d65d94b784ba526c479fab9bc402960d4e805d69" "gitHead": "c49ccbde93dbad7062ac39d4f18eca7d561f573f"
} }

View File

@ -53,5 +53,5 @@
"vite": "^3.1.0", "vite": "^3.1.0",
"vue-tsc": "^0.38.9" "vue-tsc": "^0.38.9"
}, },
"gitHead": "d65d94b784ba526c479fab9bc402960d4e805d69" "gitHead": "c49ccbde93dbad7062ac39d4f18eca7d561f573f"
} }

View File

@ -2,7 +2,7 @@ FROM node:20-alpine AS builder
EXPOSE 7001 EXPOSE 7001
WORKDIR /workspace/ WORKDIR /workspace/
COPY . /workspace/ COPY . /workspace/
RUN npm install -g yarn RUN NPM_CONFIG_LOGLEVEL=silly npm install -g pnpm
#RUN cd /workspace/certd-client && pnpm install && npm run build #RUN cd /workspace/certd-client && pnpm install && npm run build
RUN cp /workspace/certd-client/dist/* /workspace/certd-server/public/ -rf RUN cp /workspace/certd-client/dist/* /workspace/certd-server/public/ -rf