mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
6 lines
164 B
Docker
6 lines
164 B
Docker
ARG mysql_version=8.0.32
|
|
FROM mysql:${mysql_version}
|
|
ADD setup.sql /docker-entrypoint-initdb.d
|
|
RUN chown -R mysql:mysql /docker-entrypoint-initdb.d/
|
|
CMD ["mysqld"]
|