view testbench-node/docker-entrypoint.sh @ 181:5c4e8cc8d75d

flow: Promoted <hotfix> 'v1.2.2' (ae2b4a5294ff) to 'default'.
author smith@nwoca.org
date Mon, 11 Sep 2017 22:01:37 +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