Rainbond/hack/contrib/docker/node/entrypoint.sh
2020-01-17 07:36:52 +08:00

8 lines
149 B
Bash
Executable File

#!/bin/bash
if [ "$1" = "bash" ];then
exec /bin/bash
elif [ "$1" = "version" ];then
echo $RELEASE_DESC
else
exec /run/rainbond-node $@
fi