From e89541fa6564e3ae0c3143ff83bf5c9cd4bf3331 Mon Sep 17 00:00:00 2001 From: zyimm Date: Tue, 23 Apr 2024 14:50:36 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=95=EF=B8=8F=E5=BC=80=E5=8F=91?= =?UTF-8?q?=E5=B7=A5=E5=85=B7-=E9=80=9F=E6=9F=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _posts/Linux/other/ref-site.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 _posts/Linux/other/ref-site.md diff --git a/_posts/Linux/other/ref-site.md b/_posts/Linux/other/ref-site.md new file mode 100644 index 0000000..64c68e4 --- /dev/null +++ b/_posts/Linux/other/ref-site.md @@ -0,0 +1,24 @@ +--- +title: 🏕️开发工具-速查表 +date: 2024-04-23 +tags: Linux +--- + +是为了方便自己的技术栈查阅,以及较遗忘知识点快速找到,所以我也建立了这个站点。 + +地址❤️:[开发工具-速查表!http://ref.zyimm.com](http://ref.zyimm.com/) + +## docker 安装 + +```shell +# 拉取镜像 +docker pull wcjiang/reference +# 自定义端口 +docker run --name reference --rm -d -p 9667:3000 wcjiang/reference:latest +# Or +docker run --name reference -itd -p 9667:3000 wcjiang/reference:latest +``` + +在浏览器中访问如下地址: + +`http://localhost:9667/` \ No newline at end of file