From 800a3bc9d1653eff208588b551645d54357bbd25 Mon Sep 17 00:00:00 2001
From: zhaomingwork <zhaomingwork@qq.com>
Date: 星期三, 07 六月 2023 17:32:17 +0800
Subject: [PATCH] for wss client no offline mode

---
 docs/installation/docker.md |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/docs/installation/docker.md b/docs/installation/docker.md
index bc80819..a63f2e7 100644
--- a/docs/installation/docker.md
+++ b/docs/installation/docker.md
@@ -52,8 +52,12 @@
 
 ## Run Docker
 ```shell
-sudo docker run -itd --name funasr <image-name>:<tag> bash
-sudo docker exec -it funasr bash
+# cpu
+sudo docker run -itd --name funasr -v <local_dir:dir_in_docker> <image-name>:<tag> /bin/bash
+# gpu
+sudo docker run -itd --gpus all --name funasr -v <local_dir:dir_in_docker> <image-name>:<tag> /bin/bash
+
+sudo docker exec -it funasr /bin/bash
 ```
 
 ## Stop Docker

--
Gitblit v1.9.1