comparison testbench-node/docker-entrypoint.sh @ 90:63cb9be89a26 production v1.0.0

flow: Merged <release> 'v1.0.0' to <master> ('production').
author smith@nwoca.org
date Thu, 22 Sep 2016 01:49:20 +0100
parents 0f366721a499
children b8373a99ad4d
comparison
equal deleted inserted replaced
1:44f401c902ba 90:63cb9be89a26
1 #!/bin/bash
2 set -e
3
4 case "$1" in
5
6 node)
7 java -jar testbench-standalone.jar -role node -hub http://$HUB_HOST:4444/grid/register -browser "browserName=phantomjs"
8 ;;
9
10 *)
11 exec "$@"
12 ;;
13
14 esac
15