修改安装文档

This commit is contained in:
dushixiang
2021-01-27 11:21:23 +08:00
parent b5f74a3ca6
commit 6d6fcb2993
2 changed files with 24 additions and 3 deletions

View File

@ -8,7 +8,7 @@
Next Terminal是使用Golang和React开发的一款HTML5的远程桌面网关具有小巧、易安装、易使用、资源占用小的特点支持RDP、SSH、VNC和Telnet协议的连接和管理。
Next Terminal基于 [Apache Guacamole](!https://guacamole.apache.org/) 开发使用到了guacd服务。
Next Terminal基于 [Apache Guacamole](https://guacamole.apache.org/) 开发使用到了guacd服务。
目前支持的功能有:
@ -18,7 +18,7 @@ Next Terminal基于 [Apache Guacamole](!https://guacamole.apache.org/) 开发,
- 批量执行命令
- 在线会话管理(监控、强制断开)
- 离线会话管理(查看录屏)
- 双因素认证 感谢 [naiba](!https://github.com/naiba) 贡献
- 双因素认证 感谢 [naiba](https://github.com/naiba) 贡献
- 资产标签
- 资产授权
- 用户分组

View File

@ -20,4 +20,25 @@ location / {
把加密类型修改为 Prefer On
</details>
</details>
<details>
<summary>docker安装如何更新</summary>
推荐使用`watchtower`自动更新
手动更新需要先拉取最新的镜像
```shell
docker pull dushixiang/next-terminal:latest
```
删除掉原来的容器
> 如果是使用sqlite方式启动的记得备份`next-terminal.db`文件哦
```shell
docker rm <container-id> -f
```
再重新执行一次 [docker方式安装命令](install-naive.md)
</details>