mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Devenv: fix permission failures for mysql_tests and postgres_tests docker blocks (#44203)
This commit is contained in:
parent
94edd7a762
commit
4ca8529b76
@ -1,4 +1,5 @@
|
||||
ARG mysql_version=5.6
|
||||
FROM mysql:${mysql_version}
|
||||
ADD setup.sql /docker-entrypoint-initdb.d
|
||||
RUN chown -R mysql:mysql /docker-entrypoint-initdb.d/
|
||||
CMD ["mysqld"]
|
||||
|
@ -1,4 +1,5 @@
|
||||
ARG postgres_version=9.3
|
||||
FROM postgres:${postgres_version}
|
||||
ADD setup.sql /docker-entrypoint-initdb.d
|
||||
RUN chown -R postgres:postgres /docker-entrypoint-initdb.d/
|
||||
CMD ["postgres"]
|
||||
|
Loading…
Reference in New Issue
Block a user