mirror of
https://github.com/didi/KnowStreaming.git
synced 2025-12-24 11:52:08 +08:00
10 lines
250 B
Docker
10 lines
250 B
Docker
FROM mysql:5.7.39-oracle
|
|
|
|
LABEL org.opencontainers.image.authors="haoqi123"
|
|
|
|
EXPOSE 3306
|
|
|
|
ENV INIT_SOURCE_FILE=./sql/*.sql
|
|
ENV MYSQL_CNF_FILE=./conf/*.cnf
|
|
COPY ${INIT_SOURCE_FILE} /docker-entrypoint-initdb.d/
|
|
COPY ${MYSQL_CNF_FILE} /etc/mysql/conf.d/ |