view testbench-node/docker-entrypoint.sh @ 86:b997ad087ac1

DEP-12: modify utils image to pull production branch from ssdt-docker by default
author smith@nwoca.org
date Thu, 22 Sep 2016 01:48:13 +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