cetus/doc/cetus-docker.md
2018-11-30 15:59:48 +08:00

40 lines
992 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Cetus Docker镜像使用
## 简介
Cetus镜像是关系型数据库中间件Cetus的Docker镜像,该镜像将后端mysql实例、配置库和cetus应用制作成一个镜像方便用户部署使用。
## 使用方法
### 使用依赖
- docker环境
- mysql客户端
### 使用方法
- 拉取镜像:拉取镜像仓库的镜像,如下:
```
docker pull ledetech/cetus
```
- 运行使用docker run命令运行run命令将容器内的端口以相同的端口号映射到本机如果本机端口已经被占用则需要修改本机映射后的端口号如下
```
docker run -d -P -it -p port1:port1 -p port2:port2 -p port3:port3 -p port4:port4 -p port5:port5 -p port6:port6 ledetech/cetus
```
- 连接使用mysql客户端命令与cetus、mysql后端等进行交互指令如下
```
mysql -u username -p password -h host -P port
```
## 注意事项
- 用户以root身份运行。
详见docker hub https://hub.docker.com/r/ledetech/cetus/