mirror of
https://github.com/didi/KnowStreaming.git
synced 2025-12-24 03:42:07 +08:00
13 lines
380 B
Docker
13 lines
380 B
Docker
FROM mysql:5.7.37
|
|
|
|
COPY mysqld.cnf /etc/mysql/mysql.conf.d/
|
|
ENV TZ=Asia/Shanghai
|
|
ENV MYSQL_ROOT_PASSWORD=root
|
|
|
|
RUN apt-get update \
|
|
&& apt -y install wget \
|
|
&& wget https://ghproxy.com/https://raw.githubusercontent.com/didi/LogiKM/master/distribution/conf/create_mysql_table.sql -O /docker-entrypoint-initdb.d/create_mysql_table.sql
|
|
|
|
EXPOSE 3306
|
|
|
|
VOLUME ["/var/lib/mysql"] |