This repository was archived by the owner on Mar 3, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -49,15 +49,16 @@ Docker是目前一种非常主流的容器化方案,支持非常多的特性
4949#### DockerCompose 安装
5050
51511 . 确保Docker & DockerCompose 已经部署并且启动成功,如果docker-compose 没有安装请参考官网 [ https://docs.docker.com/compose/install/ ] ( https://docs.docker.com/compose/install/ ) 安装
52- 2 . 在某个目录下创建文件 docker-compose.yml 其内容如下:
52+ 2 . 通过命令 ` docker-compose version ` 验证安装成功
53+ 3 . 在某个目录下创建文件 ` docker-compose.yml ` 其内容如下:
5354``` yaml
5455# yaml 配置实例
5556version : ' 3'
5657services :
5758 redis :
5859 image : redis:latest
5960 web :
60- build : registry.cn-hangzhou.aliyuncs.com/seven-tao/simple-docker:0.0.5
61+ image : registry.cn-hangzhou.aliyuncs.com/seven-tao/simple-docker:0.0.5
6162 ports :
6263 - " 9091:4050"
6364 volumes :
@@ -74,8 +75,8 @@ docker-compose up -d # 后台运行
7475
75763 . 浏览器访问 http://localhost:9091
76774 . 默认账号: admin 默认密码: 123456
77- 5 . 如果使用了域名并且通过服务器进行反向代理,请配置反向代理服务器支持
78- WebSocket,否则终端功能可能无法使用 [ 1. Nginx 配置支持WebSocket] ( https://www.xncoding.com/2018/03/12/fullstack/nginx-websocket.html )
78+
79+ > 如果使用了域名并且通过服务器进行反向代理,请配置反向代理服务器支持 WebSocket,否则终端功能可能无法使用 [ 1. Nginx 配置支持WebSocket] ( https://www.xncoding.com/2018/03/12/fullstack/nginx-websocket.html )
7980
8081#### 手动编译
8182
Original file line number Diff line number Diff line change 1616
1717#### 新增特性
1818
19- 🎉 新增容器在线终端(Linux)
20- 🎉 新增容器在线文件浏览以及下载(Linux/Amd64)
21- 🎉 新增容器在线性能监控
19+ + 🎉 新增容器在线终端(Linux)
20+ + 🎉 新增容器在线文件浏览以及下载(Linux/Amd64)
21+ + 🎉 新增容器在线性能监控
2222
2323#### BUG 修复
2424
You can’t perform that action at this time.
0 commit comments