mirror of
https://gitee.com/republicline/rax-remote-v2.git
synced 2025-08-24 03:34:57 +08:00
14 lines
283 B
Docker
14 lines
283 B
Docker
FROM mysql/mysql-server:8.0.32
|
|
|
|
MAINTAINER lengleng(wangiegie@gmail.com)
|
|
|
|
ENV TZ=Asia/Shanghai
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
COPY ./pig.sql /docker-entrypoint-initdb.d
|
|
|
|
COPY ./pig_codegen.sql /docker-entrypoint-initdb.d
|
|
|
|
EXPOSE 3306
|