摘要:
EwoMail 开源企业邮件系统 的docker镜像 https://hub.docker.com/r/bestwu/ewomail/ 注意:mail.ewomail.com 换成自己的域名 可配置参数 https://blog.csdn.net/inthat/article/details/103 阅读全文
摘要:
Nginx 是最常用的反向代理工具之一,一个指令 proxy_pass搞定反向代理,对于接口代理、负载均衡很是实用,但 proxy_pass指令后面的参数很有讲究,通常一个/都可能引发一个血案。 通常nginx配置proxy_pass指令时,如果proxy_pass后面的url加/,表示绝对根路径; 阅读全文
摘要:
docker run --name seata-server \ -p 8091:8091 \ -e SEATA_IP=xxx.xxx.xxx.xxx \ -e SEATA_PORT=8091 \ -e SEATA_CONFIG_NAME=file:/root/seata-config/regist 阅读全文
摘要:
docker pull docker.io/sonatype/nexus3 docker run -id --privileged=true --name=nexus3 --restart=always -p 8081:8081 -v /home/nexus3/nexus-data:/var/nex 阅读全文
摘要:
# 安装依赖 npm install npm install --registry=https://registry.npm.taobao.org npm config set registry https://registry.npm.taobao.org yarn --registry=http 阅读全文
摘要:
docker -v # 查看docker版本,检查是否安装成功 docker ps # 查看运行的容器 docker ps -a # 查看所有容器 docker images # 查看本地镜像 docker info # 查看docker的系统级信息 docker pull [image] # 拉取 阅读全文
摘要:
dev(Development environment):开发环境。用于开发者调试使用。 test:测试环境。 sit(System Integration Test):系统集成测试。 uat(User Acceptance environment):用户验收测试环境。生产环境下的软件测试者测试使用 阅读全文
摘要:
#打开阿里云控制台: https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors 转: https://blog.csdn.net/m0_67401545/article/details/124174608 阅读全文
摘要:
转:cloud.tencent.com/developer/article/1945906 https://zhuanlan.zhihu.com/p/544026036 https://blog.csdn.net/qq_40878679/article/details/125164743 阅读全文
摘要:
安装clickhouse-server: # 先创建一个测试镜像,然后拷贝出配置,删除测试镜像docker cp clickhouse-server:/etc/clickhouse-server/ /data/clickhouse/etcdocker run -d --name clickhouse 阅读全文