You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
767 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 关于Docker
## 端口
docker 的-p参数目前向外暴露了8880端口。
## 文件
docker 的-v参数目前向外暴露了三个路径
- /home/moredoc/workspace/cache
- /home/moredoc/workspace/documents
- /home/moredoc/workspace/uploads
## 数据库链接地址
提供环境变量 MYSQL_CONNECTION 来设置
## docker run 命令启动例子
```
sudo docker run -it -p 18880:8880 -v /home/bluezealot/work/morebook/cache:/home/moredoc/workspace/cache -v /home/bluezealot/work/morebook/document:/home/moredoc/workspace/documents -v /home/bluezealot/work/morebook/uploads:/home/moredoc/workspace/uploads -e MYSQL_CONNECTION="root:password@tcp(10.50.30.59:32306)/moredoc_test?charset=utf8mb4&loc=Local&parseTime=true" bluezealot/moredoc:Linux_ce_v1.0.0
```