From c56fe2ed69554b353dff22762b3d95afc86d7edd Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Wed, 9 Sep 2015 19:24:29 +0530 Subject: [PATCH] tests: allow arguments to be passed to `create_basic_container` function --- bitnami/mariadb/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitnami/mariadb/test.sh b/bitnami/mariadb/test.sh index 4a1c98c825db..e903399ee09a 100755 --- a/bitnami/mariadb/test.sh +++ b/bitnami/mariadb/test.sh @@ -32,7 +32,7 @@ cleanup_volumes_content() { } create_basic_container(){ - docker run -d --name $CONTAINER_NAME $IMAGE_NAME; sleep $SLEEP_TIME + docker run -d --name $CONTAINER_NAME "$@" $IMAGE_NAME; sleep $SLEEP_TIME } # $1 is the command