mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-02 02:02:13 +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
|
|
|
|
ARG INIT_SOURCE_FILE=./sql/*.sql
|
|
ARG MYSQL_CNF_FILE=./conf/*.cnf
|
|
COPY ${INIT_SOURCE_FILE} /docker-entrypoint-initdb.d/
|
|
COPY ${MYSQL_CNF_FILE} /etc/mysql/conf.d/ |