jiagenli.funDocker 简单使用Docker Desktop的简单使用,最简单的是用图形化界面统一操控。 Containers 容器,Images 镜像,Volumes 卷(分区) 启动容器: docker run -d -p 80:80 docker/getting-started -d - run the container in detached mode (in the background) -p 80:80 - map port 80 of the host to port 80 in the contain...Feb 18, 2023·1 min read
jiagenli.fun关于 IDEA 告警 You have JVM property “https.proxyHost“ set to “127.0.0.1”的解决办法完整的报错如下图所示: 相信出现这个问题的人都是因为在中国大陆开了代理导致的。 在谷歌搜索解决方案时,很容易搜索到了这个答案,但是我试了之后并没有解决。 我的方法是编辑 IDEA 自定义的 VM Options,在 IDEA 中的 Help - Edit Custom VM Options 添加以下配置: -Dhttp.proxyHost -Dhttp.proxyPort -Dhttps.proxyHost -Dhttps.proxyPort -DsocksProxyHost -DsocksP...Nov 5, 2022·1 min read