view testbench-node/docker-entrypoint.sh @ 137:ac155283b784 hotfix/v1.1.1

flow: Created branch 'hotfix/v1.1.1'.
author smith@nwoca.org
date Fri, 16 Jun 2017 16:34:47 +0100
parents 0f366721a499
children b8373a99ad4d
line wrap: on
line source
#!/bin/bash
set -e

case "$1" in

   node)
     java -jar testbench-standalone.jar -role node -hub http://$HUB_HOST:4444/grid/register -browser "browserName=phantomjs"
   ;;

  *)
  exec "$@"
  ;;

esac