* Devenv: allow dynamically change mysql_tests docker image * Devenv: allow dynamically change postgres_tests docker image
14 lines
325 B
YAML
14 lines
325 B
YAML
mysqltests:
|
|
build:
|
|
context: docker/blocks/mysql_tests
|
|
args:
|
|
- mysql_version=${mysql_version}
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: rootpass
|
|
MYSQL_DATABASE: grafana_tests
|
|
MYSQL_USER: grafana
|
|
MYSQL_PASSWORD: password
|
|
ports:
|
|
- "3306:3306"
|
|
tmpfs: /var/lib/mysql:rw
|