1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| FROM mysql:8.0.19
|
| MAINTAINER bsw
|
| ENV TZ=Asia/Shanghai
|
| RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
| COPY ./herb.sql /docker-entrypoint-initdb.d
|
| COPY ./nacos.sql /docker-entrypoint-initdb.d
|
| #COPY origin/jeecgboot-mysql-5.7.sql /docker-entrypoint-initdb.d
|
| #COPY origin/tables_xxl_job.sql /docker-entrypoint-initdb.d
|
|