Add DB port number to docker

which gets copied to the docker image's `.env` file during installation. This closes #5718
This commit is contained in:
Brady Wetherington 2018-07-18 19:10:06 -07:00 committed by GitHub
parent 70cb5ed215
commit f0332a7388
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,7 @@
# -------------------------------------------- # --------------------------------------------
DB_CONNECTION=mysql DB_CONNECTION=mysql
DB_HOST=${MYSQL_PORT_3306_TCP_ADDR} DB_HOST=${MYSQL_PORT_3306_TCP_ADDR}
DB_PORT=${MYSQL_PORT_3306_TCP_PORT}
DB_DATABASE=${MYSQL_DATABASE} DB_DATABASE=${MYSQL_DATABASE}
DB_USERNAME=${MYSQL_USER} DB_USERNAME=${MYSQL_USER}
DB_PASSWORD=${MYSQL_PASSWORD} DB_PASSWORD=${MYSQL_PASSWORD}