updating mysql settings

This commit is contained in:
Joby Elliott 2018-08-18 10:14:16 -06:00
parent 6e91ca861b
commit 1651358edb

View file

@ -1,6 +1,6 @@
# This file is a template, and might need editing before it works on your project. # This file is a template, and might need editing before it works on your project.
# Select image from https://hub.docker.com/_/php/ # Select image from https://hub.docker.com/_/php/
image: php:7.1.1 image: php:7.1.1
# Select what we should cache between builds # Select what we should cache between builds
cache: cache:
@ -28,8 +28,10 @@ services:
# Set any variables we need # Set any variables we need
variables: variables:
# Configure mysql environment variables (https://hub.docker.com/r/_/mysql/) # Configure mysql environment variables (https://hub.docker.com/r/_/mysql/)
MYSQL_DATABASE: ci MYSQL_DATABASE: ci
MYSQL_ROOT_PASSWORD: ci_password MYSQL_RANDOM_ROOT_PASSWORD: yes
MYSQL_USER: ci
MYSQL_PASSWORD: ci_password
# Run our tests # Run our tests
# If Xdebug was installed you can generate a coverage report and see code coverage metrics. # If Xdebug was installed you can generate a coverage report and see code coverage metrics.