view testbench-node/docker-entrypoint.sh @ 225:2e0d3c70bba2

replace restore scripts with updated container restore script
author smith@nwoca.org
date Mon, 09 Oct 2017 21:34:36 +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