mirror of
https://github.com/didi/KnowStreaming.git
synced 2025-12-24 11:52:08 +08:00
7 lines
210 B
Docker
7 lines
210 B
Docker
FROM mysql:5.7.39-oracle
|
|
EXPOSE 3306
|
|
ENV INIT_SOURCE_FILE=./sql/*.sql
|
|
#RUN mkdir /data/mysql
|
|
#RUN mkdir /var/lib/mysql-files
|
|
COPY ${INIT_SOURCE_FILE} /docker-entrypoint-initdb.d/
|
|
COPY ./*.cnf /etc/mysql/conf.d/ |