docker搭建开发环境
最后更新于:2022-04-02 07:09:01
### Docker 搭建开发环境
* [Docker-desktop下载](https://hub.docker.com/editions/community/docker-ce-desktop-windows)
* [Docker 安装 MySQL5.7](https://my.oschina.net/jeecg/blog/4283700)
* [Docker 安装 Redis](https://www.runoob.com/docker/docker-install-redis.html)
* [Docker 切换中国镜像源](https://blog.csdn.net/weixin_39305029/article/details/105014150)
* [Docker 安装Elasticsearch](http://doc.jeecg.com/2242817)
进入数据库
```
mysql -u root -p
```
创建数据库
```
create database `jeecg-boot` default character set utf8mb4 collate utf8mb4_general_ci;
```
##### Docker Engine Configuration
```
{
"registry-mirrors": [
"https://registry.docker-cn.com",
"http://hub-mirror.c.163.com",
"https://docker.mirrors.ustc.edu.cn"
],
"insecure-registries": [],
"debug": false,
"experimental": false,
"features": {
"buildkit": true
}
}
```
';