mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 01:00:33 +08:00

* Devenv: allow dynamically change mysql_tests docker image * Devenv: allow dynamically change postgres_tests docker image
5 lines
118 B
Docker
5 lines
118 B
Docker
ARG postgres_version=9.3
|
|
FROM postgres:${postgres_version}
|
|
ADD setup.sql /docker-entrypoint-initdb.d
|
|
CMD ["postgres"]
|