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.
12 lines
278 B
12 lines
278 B
2 years ago
|
FROM mysql/mysql-server:8.0.30
|
||
|
|
||
|
MAINTAINER dudiao(idudaio@163.com)
|
||
|
|
||
|
ENV TZ=Asia/Shanghai
|
||
|
|
||
|
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||
|
|
||
|
COPY sql/01schema.sql /docker-entrypoint-initdb.d
|
||
|
|
||
|
COPY sql/02worker-samples.sql /docker-entrypoint-initdb.d
|