mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
The supported database policy is listed at: https://grafana.com/docs/grafana/latest/setup-grafana/installation/#supported-databases
6 lines
164 B
Docker
6 lines
164 B
Docker
ARG mysql_version=5.7.39
|
|
FROM mysql:${mysql_version}
|
|
ADD setup.sql /docker-entrypoint-initdb.d
|
|
RUN chown -R mysql:mysql /docker-entrypoint-initdb.d/
|
|
CMD ["mysqld"]
|