Docker容器之间网络通信

https://docs.docker.com/network/ 1 2 # 查看docker网络 docker network ls 在创建容器时,使用-P -p 可以端口映射与宿主机进行通信;如果多个容器使用同一个主机端口创建容器会报错 容器之间...

2023年7月14日 | 1 分钟 | 410 字

S3Error - The request signature we calculated does not match the signature you provided. Check your key and signing method

在使用minio-js sdk上传文件时,出现 ==S3Error: The request signature we calculated does not match the signature you provided. Check your key and signing method.== 是不是服务器时区不对导致的?通过设置时间同步 1 2 3 4 5 6 7...

2023年6月28日 | 1 分钟 | 390 字

centos7 安装node18+ 解决报错

最近有个库需要使用node18+版本,所以在node上安装了nvm https://github.com/nvm-sh/nvm 1 2 3 4 5 6 7 wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash command -v nvm nvm ls-remote nvm install 【版本】 npm -v时提示有几个库的版本...

2023年6月18日 | 1 分钟 | 465 字

VMware使用docker安装EasyConnection

公司内网的Jenkins需要使用EasyConnection才能访问,但是这软件有点流氓 在自己电脑上是未开源的代理软件一概不敢使用怕有后门,...

2023年4月22日 | 3 分钟 | 1068 字

适配器模式

最近在使用axios时发现当出现400时控制台会打印 于是决定去看看axios源码中会把哪些响应状态码reject出来 1 2 3 4 5 6 7 8 9 10 11 12...

2023年4月8日 | 5 分钟 | 2008 字