Mercurial > public > ssdt-docker
view testbench-node-17/docker-entrypoint.sh @ 571:d5e8a9bea4fb production
DEP-25 Update file permissions on ESS and ITCM scripts
author | Matt Calmes <calmes@ssdt-ohio.org> |
---|---|
date | Wed, 17 Jul 2024 13:02:00 -0400 |
parents | 957e787ad842 |
children |
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=chrome" ;; *) exec "$@" ;; esac