From: Thomas Müller Date: Fri, 20 Mar 2015 09:33:21 +0000 (+0100) Subject: Now using a special docker where the database for testing is already available X-Git-Tag: v8.1.0alpha1~236^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d039e4fd254ef177cbe96245b76d823d4e1f6713;p=nextcloud-server.git Now using a special docker where the database for testing is already available --- diff --git a/autotest.sh b/autotest.sh index 94808e3136a..6c2a61da0a7 100755 --- a/autotest.sh +++ b/autotest.sh @@ -124,37 +124,13 @@ function execute_tests { fi if [ "$1" == "oci" ] ; then echo "Fire up the oracle docker" - DOCKER_CONTAINER_ID=`docker run -d wnameless/oracle-xe-11g` + DOCKER_CONTAINER_ID=`docker run -d deepdiver/docker-oracle-xe-11g` DATABASEHOST=`docker inspect $DOCKER_CONTAINER_ID | grep IPAddress | cut -d '"' -f 4` echo "Waiting 60 seconds for Oracle initialization ... " sleep 60 - echo "drop the database" - echo "sqlplus -s -l system/oracle@//$DATABASEHOST:1521/xe" - - sqlplus -s -l system/oracle@//$DATABASEHOST:1521/xe <