Commit 7ec8b884 authored by Ryan Hayle's avatar Ryan Hayle

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

parent 422d6d8d
......@@ -192,6 +192,8 @@ services:
mysql:
build:
context: ./mysql
args:
- MYSQL_VERSION=${MYSQL_VERSION}
environment:
- MYSQL_DATABASE=${MYSQL_DATABASE}
- MYSQL_USER=${MYSQL_USER}
......
......@@ -90,6 +90,7 @@ PHP_SOCKET=php-fpm:9000
### MYSQL ##############################################################################################################
MYSQL_VERSION=8.0
MYSQL_DATABASE=default
MYSQL_USER=default
MYSQL_PASSWORD=secret
......
FROM mysql:8.0
ARG MYSQL_VERSION=8.0
FROM mysql:${MYSQL_VERSION}
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment