服装智能制造软件平台V3.0
http://182.92.169.222/hhxy/#/user/login
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.
14 lines
315 B
14 lines
315 B
2 years ago
|
FROM mysql:8.0.19
|
||
|
|
||
|
MAINTAINER jeecgos@163.com
|
||
|
|
||
|
ENV TZ=Asia/Shanghai
|
||
|
|
||
|
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||
|
|
||
|
COPY ./tables_nacos.sql /docker-entrypoint-initdb.d
|
||
|
|
||
|
COPY ./jeecgboot-mysql-5.7.sql /docker-entrypoint-initdb.d
|
||
|
|
||
|
COPY ./tables_xxl_job.sql /docker-entrypoint-initdb.d
|