- 简介
- 目录大纲
- 最新文档
云策文档think配置https教程
构建前编辑配置文件 生产环境配置文件名 prod.yaml 这里我们准备两个域名,示例域名如下(可自行修改为自己的): - thinkapi.mrdoc.fun - think.mrdoc.fun yaml client: port: 5001 assetPrefix: '/' apiUrl: 'https://thinkapi.mrdoc.fun/api' collab...……
Jonny - 2022年8月5日 18:17
Warning: Stopping docker.service, but it can still be activated by: docker.socket
问题描述 使用 docker 时,每次停止 docker systemctl stop docker 命令执行完都会提示 Warning: Stopping docker.service, but it can still be activated by: docker.socket 原因 目前找到的问题原因是: This is because in addition to the dock...……
Jonny - 2022年5月22日 21:49
dockerfile 多阶段构建参考
dockerfile ``` FROM node:18-alpine as builder COPY . /app/ WORKDIR /app ARG EIP=mrdoc.fun RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories RUN npm config set regis...……
Jonny - 2022年5月22日 19:12
alpine的docker镜像安装mysql/mariadb/redis
dockerfile参考 ``` FROM node:18-alpine as prod LABEL maintainer="www.mrdoc.fun" ENV TZ=Asia/Shanghai \ EIP=127.0.0.1 COPY --from=builder /app/think/output/ /app/ WORKDIR /app RUN set -x \ &...……
Jonny - 2022年5月22日 16:18