Fix missing values in context created with common.BackgroundContext (#950)

* Fix missing values in context when created through common.BackgroundContext

* pin to mysql 5.7.22
This commit is contained in:
Dario Domizioli
2018-04-20 17:29:27 +01:00
committed by Owen Cliffe
parent 07388774db
commit 0a72cb3ef4
4 changed files with 31 additions and 23 deletions

View File

@@ -8,7 +8,7 @@ source ./helpers.sh
remove_containers
docker run --name func-postgres-test -e "POSTGRES_DB=funcs" -e "POSTGRES_PASSWORD=root" -p 5432:5432 -d postgres:9.3-alpine
docker run --name func-mysql-test -p 3306:3306 -e MYSQL_DATABASE=funcs -e MYSQL_ROOT_PASSWORD=root -d mysql
docker run --name func-mysql-test -p 3306:3306 -e MYSQL_DATABASE=funcs -e MYSQL_ROOT_PASSWORD=root -d mysql:5.7.22
docker run -d -p 9000:9000 --name func-minio-test -e "MINIO_ACCESS_KEY=admin" -e "MINIO_SECRET_KEY=password" minio/minio server /data
MYSQL_HOST=`host func-mysql-test`