Update to include MARIADB_VERSION in env file which sets the mariadb version (#2185)

This commit is contained in:
zslavis 2019-07-13 20:46:21 -07:00 committed by Shao Yu-Lung (Allen)
parent 01eb934863
commit 4e257c8e8f
3 changed files with 4 additions and 1 deletions

View File

@ -401,6 +401,7 @@ services:
- http_proxy
- https_proxy
- no_proxy
- MARIADB_VERSION=${MARIADB_VERSION}
volumes:
- ${DATA_PATH_HOST}/mariadb:/var/lib/mysql
- ${MARIADB_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d

View File

@ -269,6 +269,7 @@ MSSQL_PORT=1433
### MARIADB ###############################################
MARIADB_VERSION=latest
MARIADB_DATABASE=default
MARIADB_USER=default
MARIADB_PASSWORD=secret

View File

@ -1,4 +1,5 @@
FROM mariadb:latest
ARG MARIADB_VERSION=latest
FROM mariadb:${MARIADB_VERSION}
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"