Allow specifying the version of MySQL to install in .env file.

This commit is contained in:
Ryan Hayle
2017-07-07 16:43:06 -05:00
parent 422d6d8dd0
commit 7ec8b8846e
3 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,5 @@
FROM mysql:8.0
ARG MYSQL_VERSION=8.0
FROM mysql:${MYSQL_VERSION}
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>