diff --git a/README.en.md b/README.en.md index 3a6c3b48c8e03bd93ebec85e04efdeed75e5c5ed..3dae6e51d6ceca3acffdf7a2e0576797fbf1a1ee 100644 --- a/README.en.md +++ b/README.en.md @@ -2,8 +2,7 @@ ### Brief Introduction -docs maintains openGauss documentations which is integrated by online website. Now we are under developing. -you are welcome to join us. +docs maintains openGauss documentations which is integrated by online website. Welcome to join us. ### Installation @@ -32,17 +31,7 @@ Other language(zh) will serving on http://your-server-ip/zh docker rm -f `cat docs.pid` && rm -f docs.pid ``` - -### Contribution - -1. Fork the repository -2. Create Feature_xxx branch -3. Commit your code -4. Create Pull Request - -Please refer to [CONTRIBUTING](./CONTRIBUTING.md) for more guide. - ### Get Help - IRC: #opengauss-docs -- Mail: dev@opengauss.org +- Mailling List: [docs@opengauss.org](https://mailweb.opengauss.org/postorius/lists/docs.opengauss.org/) diff --git a/README.md b/README.md index 5f7075b363683402d80e36cd0f477f68bb114dcf..bb6e53c0e20336ad9096981951161e4b9489408a 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,36 @@ #### 介绍 欢迎来到openGauss官方文档的仓库。 + +#### 安装 + +1. 构建镜像 + +``` +docker build -t docs:v0.0.1 . +``` + +注: ```docs``` 是镜像名称, 可任意修改. + +2. 运行容器 + +``` +docker run -p 80:80 -d docs:v0.0.1 > docs.pid +``` + +网站默认访问路径: http://your-server-ip:80 + +英文网站访问路径: http://your-server-ip/ +中文网站访问路径: http://your-server-ip/zh + +3. 删除容器 + +``` +docker rm -f `cat docs.pid` && rm -f docs.pid +``` + +#### 联系方式 + +- IRC: #opengauss-docs +- Mailling List: [docs@opengauss.org](https://mailweb.opengauss.org/postorius/lists/docs.opengauss.org/) +