From 02d1207ff4d91854fe9a74c70d99381f3384d17f Mon Sep 17 00:00:00 2001
From: 游雁 <zhifu.gzf@alibaba-inc.com>
Date: 星期四, 20 四月 2023 17:46:19 +0800
Subject: [PATCH] docs

---
 docs/index.rst   |    6 +++
 docs/application |    5 ++
 docs/docker.md   |   58 +++++++++++++++++++++++++++++
 3 files changed, 69 insertions(+), 0 deletions(-)

diff --git a/docs/application b/docs/application
new file mode 100644
index 0000000..1c19dd6
--- /dev/null
+++ b/docs/application
@@ -0,0 +1,5 @@
+## Audio Cut
+
+## Realtime Speech Recognition
+
+## Audio Chat
\ No newline at end of file
diff --git a/docs/docker.md b/docs/docker.md
new file mode 100644
index 0000000..2990acb
--- /dev/null
+++ b/docs/docker.md
@@ -0,0 +1,58 @@
+# Docker
+
+## Install 
+
+### Ubuntu
+```shell
+curl -fsSL https://test.docker.com -o test-docker.sh
+sudo sh test-docker.sh
+```
+### Debian
+```shell
+ curl -fsSL https://get.docker.com -o get-docker.sh
+ sudo sh get-docker.sh
+```
+
+### CentOS
+```shell
+curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
+```
+
+### Windows
+Ref to [docs](https://docs.docker.com/desktop/install/windows-install/)
+
+## Start Docker
+```shell
+sudo systemctl start docker
+```
+## Download image
+
+### Image
+#### CPU
+`registry.cn-hangzhou.aliyuncs.com/modelscope-repo/modelscope:ubuntu20.04-py37-torch1.11.0-tf1.15.5-1.5.0`
+
+#### GPU
+
+`registry.cn-hangzhou.aliyuncs.com/modelscope-repo/modelscope:ubuntu20.04-cuda11.3.0-py37-torch1.11.0-tf1.15.5-1.5.0'
+
+### Pull Image
+```shell
+sudo docker pull <image-name>:<tag>
+```
+
+### Check Downloaded Image 
+```shell
+sudo docker images
+```
+
+### Run Docker
+```shell
+sudo docker run -it <image-name>:<tag> bash
+```
+
+### Stop Docker
+```shell
+sudo docker ps
+sudo docker stop <container-id>
+```
+
diff --git a/docs/index.rst b/docs/index.rst
index 14c9525..9bd45bd 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -77,6 +77,12 @@
 
 .. toctree::
    :maxdepth: 1
+   :caption: Application
+
+   ./application.md
+
+.. toctree::
+   :maxdepth: 1
    :caption: FQA
 
    ./FQA.md

--
Gitblit v1.9.1