mirror of
https://gitee.com/johng/gf
synced 2026-07-06 13:42:46 +08:00
* feat: add `gcfg.Adapter` implements using nacos service * Update gf.yml * Update gf.yml Co-authored-by: John Guo <john@johng.cn>
6 lines
331 B
Docker
6 lines
331 B
Docker
FROM loads/mysql:5.7
|
|
ADD https://raw.githubusercontent.com/alibaba/nacos/develop/distribution/conf/mysql-schema.sql /docker-entrypoint-initdb.d/nacos-mysql.sql
|
|
RUN chown -R mysql:mysql /docker-entrypoint-initdb.d/nacos-mysql.sql
|
|
EXPOSE 3306
|
|
CMD ["mysqld", "--character-set-server=utf8mb4", "--collation-server=utf8mb4_unicode_ci"]
|