linux下部署完善

This commit is contained in:
macro
2019-11-21 11:31:09 +08:00
parent b5a9ce44d7
commit 3d1e30015c
12 changed files with 35 additions and 1 deletions

View File

@@ -108,4 +108,28 @@ spring:
password: 123456
clone-on-start: true
search-paths: '{application}'
```
## 可视化管理工具
### 下载
- 地址https://github.com/portainer/portainer
### 安装
- 拉取镜像文件:
```bash
docker pull portainer/portainer
```
- 使用docker容器运行运行portainer
```bash
docker run -p 9000:9000 -p 8000:8000 --name portainer \
--restart=always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /mydata/portainer/data:/data \
-d portainer/portainer
```