Commit ffd0ff03 by 冯靖

修改Docker环境数据库脚本为自动初始化,免去手动初始化数据库表结构

parent 0ff0a11f
...@@ -61,4 +61,5 @@ services: ...@@ -61,4 +61,5 @@ services:
ports: ports:
- "3306:3306" - "3306:3306"
volumes: volumes:
- /var/data/mysql:/var/lib/mysql - /var/data/mysql:/var/lib/mysql
\ No newline at end of file - ./scripts/sql-docker:/docker-entrypoint-initdb.d
\ No newline at end of file
...@@ -16,9 +16,9 @@ ...@@ -16,9 +16,9 @@
### 如何使用 ### 如何使用
克隆项目,在项目根目录下执行`./run.sh`,该过程涉及编译、打包、构建镜像会比较漫长 克隆项目,在项目根目录下执行`./run.sh`,该过程涉及编译、打包、构建镜像会比较漫长
待数据库启动完毕,连接数据库(数据库已经映射到宿主机的`3306`端口),用户名密码为`root/root`,执行`scripts/sql-docker`目录下的数据库脚本完成数据库初始化。 数据库已经映射到宿主机的`3306`端口,用户名密码为`root/root`
Apollo配置中心 http://localhost:9090 Apollo配置中心 http://localhost:9090
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment